Home
last modified time | relevance | path

Searched refs:sem_undos (Results 1 – 2 of 2) sorted by relevance

/illumos-gate/usr/src/uts/common/syscall/
H A Dsem.c246 list_destroy(&sp->sem_undos); in sem_dtor()
278 for (undo = list_head(&sp->sem_undos); undo; in sem_undo_clear()
279 undo = list_next(&sp->sem_undos, undo)) in sem_undo_clear()
314 while (undo = list_head(&sp->sem_undos)) { in sem_rmid()
315 list_remove(&sp->sem_undos, undo); in sem_rmid()
640 list_remove(&sp->sem_undos, undo); in semexit()
710 list_create(&sp->sem_undos, sizeof (struct sem_undo), in semget()
851 list_insert_head(&sp->sem_undos, undo); in sem_undo_alloc()
/illumos-gate/usr/src/uts/common/sys/
H A Dsem_impl.h69 list_t sem_undos; /* list of undo structures */ member