queue_init - General: Initializes the specified queue
void queue_init(
queue_t queue_pointer );
Specifies a pointer to a queue_entry structure. This
structure contains a links member that specifies a
queue_entry structure. This structure contains a generic
doubly linked list (queue).
The queue_init routine initializes the specified queue.
Kernel modules call this routine prior to calling
select_enqueue to initialize the links member of the
sel_queue data structure. This member specifies a
queue_entry structure. This structure contains a generic
doubly linked list (queue).
None
SEE ALSO
Kernel routines: select_enqueue(9r)
Data Structures: sel_queue(9s)
queue_init(9r)
[ Back ] |