forked from DanielTillett/Simple-Windows-Posix-Semaphore
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththreadmem.h
More file actions
42 lines (27 loc) · 669 Bytes
/
Copy paththreadmem.h
File metadata and controls
42 lines (27 loc) · 669 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// Copyright (C) 2026 The OnePointer Authors.
//
#ifndef _THREADMEM_H_
#define _THREADMEM_H_
#ifdef __cplusplus
extern "C" {
#endif
#include "mutex.h"
#include "semaphore_type.h"
#include <pthread.h>
typedef struct Memory {
void* mem;
size_t memsize;
char* memname;
enum PTHREAD_PROCESS_AVAILABILITY pshared;
mutex_t* mtx;
pthread_barrier_t barrier;
pthread_barrierattr_t barrier_attr;
PID owner;
semaphore_t* sem;
pthread_cond_t cond;
} memory_t;
struct Memory* memory_new( const enum PTHREAD_PROCESS_AVAILABILITY );
#ifdef __cplusplus
}
#endif
#endif // _THREADMEM_H_