ex

Fork of mbed-os-example-mbed5-blinky by mbed-os-examples

Embed: (wiki syntax)

« Back to documentation index

ns_list Struct Reference

ns_list Struct Reference

Underlying generic linked list head. More...

#include <ns_list.h>

Data Fields

void * first_entry
 Pointer to first entry, or NULL if list is empty.
void ** last_nextptr
 Pointer to last entry's `next` pointer, or to head's `first_entry` pointer if list is empty.

Detailed Description

Underlying generic linked list head.

Users should not use this type directly, but use the NS_LIST_HEAD() macro.

Definition at line 82 of file ns_list.h.


Field Documentation

void* first_entry

Pointer to first entry, or NULL if list is empty.

Definition at line 84 of file ns_list.h.

void** last_nextptr

Pointer to last entry's `next` pointer, or to head's `first_entry` pointer if list is empty.

Definition at line 85 of file ns_list.h.