ChibiOS/NIL  3.1.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_t * wbase
 Thread working area base. More...
 
stkalign_t * wend
 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 599 of file ch.h.

Field Documentation

stkalign_t* nil_thread_cfg::wbase

Thread working area base.

Definition at line 600 of file ch.h.

Referenced by chSysInit().

stkalign_t* nil_thread_cfg::wend

Thread working area end.

Definition at line 601 of file ch.h.

Referenced by chSysInit().

const char* nil_thread_cfg::namep

Thread name, for debugging.

Definition at line 602 of file ch.h.

tfunc_t nil_thread_cfg::funcp

Thread function.

Definition at line 603 of file ch.h.

Referenced by chSysInit().

void* nil_thread_cfg::arg

Thread function argument.

Definition at line 604 of file ch.h.

Referenced by chSysInit().