Home
last modified time | relevance | path

Searched refs:old_head (Results 1 – 3 of 3) sorted by relevance

/illumos-gate/usr/src/uts/i86pc/os/
H A Dx_call.c144 xc_msg_t *old_head; in xc_insert() local
155 old_head = (xc_msg_t *)*(volatile xc_msg_t **)queue; in xc_insert()
156 msg->xc_next = old_head; in xc_insert()
157 } while (atomic_cas_ptr(queue, old_head, msg) != old_head); in xc_insert()
168 xc_msg_t *old_head; in xc_extract() local
172 if (old_head == NULL) in xc_extract()
173 return (old_head); in xc_extract()
174 } while (atomic_cas_ptr(queue, old_head, old_head->xc_next) != in xc_extract()
175 old_head); in xc_extract()
176 old_head->xc_next = NULL; in xc_extract()
[all …]
/illumos-gate/usr/src/cmd/bhyve/
H A Dblock_if.c1028 struct blockif_sig_elem bse, *old_head; in blockif_cancel() local
1036 old_head = blockif_bse_head; in blockif_cancel()
1037 bse.bse_next = old_head; in blockif_cancel()
1039 (uintptr_t)old_head, in blockif_cancel()
/illumos-gate/usr/src/lib/libnisdb/
H A Ddb_table.cc157 db_free_entry* old_head = head; in pop() local
160 delete old_head; in pop()