sem_num is really supposed to be a ushort, from Danny Boulet (The author)

This commit is contained in:
cgd 1993-11-15 07:10:24 +00:00
parent 2000519508
commit fdff4e65de
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ struct semid_ds {
*/
struct sembuf {
short sem_num; /* semaphore # */
ushort sem_num; /* semaphore # */
short sem_op; /* semaphore operation */
short sem_flg; /* operation flags */
};