projects
/
paraslash.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge branch 'ipc'
[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
);