projects
/
paraslash.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
25c56d26fbb17c9a2fa43c99c21844eb962ddf5c
[paraslash.git]
/
ipc.h
1
/** \file ipc.h inter process communication and shared memory routines */
2
3
enum
shm_attach_mode
{
ATTACH_RO
,
ATTACH_RW
};
4
5
int
mutex_new
(
void
);
6
void
mutex_lock
(
int
id
);
7
void
mutex_unlock
(
int
id
);