#include <list.h>
Collaboration diagram for list_s:
Public Attributes | |
entry * | head |
pointer to the head entry of the list. More... | |
entry * | tail |
pointer to the tail entry of the list. More... | |
int | entries |
number of entries in the list. More... | |
int | type |
type code for list, used in the scheduler. More... |
Definition at line 46 of file list.h.
|
number of entries in the list.
Definition at line 50 of file list.h. Referenced by LIST_delete, LIST_entries, LIST_init, LIST_insert_after, LIST_insert_before, LIST_insert_head, and LIST_insert_tail. |
|
pointer to the head entry of the list.
Definition at line 48 of file list.h. Referenced by LIST_delete, LIST_head, LIST_init, LIST_insert_before, LIST_insert_head, and LIST_insert_tail. |
|
pointer to the tail entry of the list.
Definition at line 49 of file list.h. Referenced by LIST_delete, LIST_init, LIST_insert_after, LIST_insert_head, LIST_insert_tail, and LIST_tail. |
|
type code for list, used in the scheduler.
Definition at line 51 of file list.h. Referenced by KERN_schedinit, KERN_suspend, and LIST_init. |