summaryrefslogtreecommitdiffstats
path: root/dvb-s/Sirius-5.0E
blob: 949d0e24fa6996c96f4df3a27de48b0734292973 (plain)
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
generated by cgit v1.2.3 (git 2.39.1) at 2025-01-24 17:18:29 +0000
 


pan>
#endif
#ifndef SHM_W
#define SHM_W 0660
#endif

#endif

extern int thread_argc;
extern char **thread_argv;

int mutex_create(void);
void mutex_lock(const int semid);
void mutex_unlock(const int semid);
void mutex_destroy(const int semid);

int shm_create(void **buffer, const int size);
void shm_destroy(const int shmid, const void *buffer);

int thread_create(const char *name, void (*thread) (void *data), void *data);
int thread_destroy(const int pid);

#endif