 |
Index for Section 9s |
|
 |
Alphabetical listing for S |
|
 |
Bottom of page |
|
sel_queue(9s)
NAME
sel_queue - General: Defines a queue of select events
SYNOPSIS
________________________________
Member Name Data Type
________________________________
links struct queue_entry
event struct event *
________________________________
MEMBERS
links
Specifies a queue_entry structure. This structure contains a generic
doubly linked list (queue).
event
Specifies a pointer to an event structure. This structure is an opaque
structure; that is, you do not reference it in your kernel module.
DESCRIPTION
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.
FILES
<sys/select.h>
SEE ALSO
Routines: select_dequeue(9r), select_enqueue(9r)
 |
Index for Section 9s |
|
 |
Alphabetical listing for S |
|
 |
Top of page |
|