#include <list.h>
Collaboration diagram for entry_s:
Public Attributes | |
list * | list |
pointing to the list the entry belongs to. More... | |
entry * | prev |
the previous entry in the list. More... | |
entry * | next |
the next entry in the list. More... | |
void * | data |
pointer to the data content of the entry. More... | |
int | len |
length of the contained data (in bytes). More... |
Definition at line 35 of file list.h.
|
pointer to the data content of the entry.
Definition at line 39 of file list.h. Referenced by KERN_schedinit, and LIST_makeentry. |
|
length of the contained data (in bytes).
Definition at line 40 of file list.h. Referenced by KERN_schedinit, and LIST_makeentry. |
|
pointing to the list the entry belongs to.
Definition at line 36 of file list.h. Referenced by KERN_suspend, LIST_delete, LIST_insert_after, LIST_insert_before, LIST_insert_head, LIST_insert_tail, and LIST_makeentry. |
|
the next entry in the list.
Definition at line 38 of file list.h. Referenced by LIST_delete, LIST_insert_after, LIST_insert_before, LIST_insert_head, LIST_insert_tail, and LIST_makeentry. |
|
the previous entry in the list.
Definition at line 37 of file list.h. Referenced by LIST_delete, LIST_insert_after, LIST_insert_before, LIST_insert_head, LIST_insert_tail, and LIST_makeentry. |