sel_queue - General: Defines a queue of select events
---------------------------------
Member Name Data Type
---------------------------------
links struct queue_entry
event struct event *
---------------------------------
Specifies a queue_entry structure. This structure contains
a generic doubly linked list (queue). Specifies a
pointer to an event structure. This structure is an
opaque structure; that is, you do not reference it in your
kernel module.
The sel_queue data structure provides kernel module writers
with a generic queue of select events. You must initialize
the links member by calling the queue_init routine
prior to using the select_enqueue and select_dequeue routines.
SEE ALSO
Routines: select_dequeue(9r), select_enqueue(9r)
sel_queue(9s)
[ Back ] |