Finita la conversione dei listati in file separati. Passato anche alla nuova
[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 };