]> git.tuebingen.mpg.de Git - paraslash.git/blob - ipc.h
The new ipc subsystem
[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);