Corretti i commenti ai listati in una forma piu' leggibile (spero).
[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 };