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