Searched defs:sem_queue (Results 1 – 1 of 1) sorted by relevance
100 struct sem_queue { struct101 struct sem_queue * next; /* next entry in the queue */ argument102 struct sem_queue ** prev; /* previous entry in the queue, *(q->prev) == q */ argument103 struct task_struct* sleeper; /* this process */104 struct sem_undo * undo; /* undo structure */105 int pid; /* process id of requesting process */106 int status; /* completion status of operation */107 struct sem_array * sma; /* semaphore array for operations */108 int id; /* internal sem id */109 struct sembuf * sops; /* array of pending operations */[all …]