ChibiOS  0.0.0
nil_thread_cfg Struct Reference

Structure representing a thread static configuration. More...

#include <ch.h>

Collaboration diagram for nil_thread_cfg:
Collaboration graph

Data Fields

stkalign_twbase
 Thread working area base. More...
 
stkalign_twend
 Thread working area end. More...
 
const char * namep
 Thread name, for debugging. More...
 
tfunc_t funcp
 Thread function. More...
 
void * arg
 Thread function argument. More...
 

Detailed Description

Structure representing a thread static configuration.

Definition at line 624 of file nil/include/ch.h.

Field Documentation

stkalign_t* nil_thread_cfg::wbase

Thread working area base.

Definition at line 625 of file nil/include/ch.h.

Referenced by chSysInit().

stkalign_t* nil_thread_cfg::wend

Thread working area end.

Definition at line 626 of file nil/include/ch.h.

Referenced by chSysInit().

const char* nil_thread_cfg::namep

Thread name, for debugging.

Definition at line 627 of file nil/include/ch.h.

tfunc_t nil_thread_cfg::funcp

Thread function.

Definition at line 628 of file nil/include/ch.h.

Referenced by chSysInit().

void* nil_thread_cfg::arg

Thread function argument.

Definition at line 629 of file nil/include/ch.h.

Referenced by chSysInit().