Merge branch 'master' of ssh://gapil.gnulinux.it/srv/git/gapil
[gapil.git] / listati / sem.h
1 struct sem {
2   short   sempid;         /* pid of last operation */
3   ushort  semval;         /* current value */
4   ushort  semncnt;        /* num procs awaiting increase in semval */
5   ushort  semzcnt;        /* num procs awaiting semval = 0 */
6 };