C/C++
thred.asc
Associated article: Event-Driven Threads in C++
Tags: Embedded Systems C/C++ Design
_EVENT-DRIVEN THREADS IN C++_ by Dan Ford Listing One // Thread.h #if !defined(THREADS_INC) #define THREADS_INC //---------------------- Constants and Types ----------------------- const int THRDS_DEF_STACK = 8192; // default stack size typedef void FNTHREADPROC (VOID * ulArg); // thread procedure type typedef ...


