#include <cthread.hxx>#include <iostream>Include dependency graph for cthread.cc:

Go to the source code of this file.
Namespaces | |
| namespace | control |
Functions | |
| void * | thread_start_entry (void *thread_inst) |
|
|
Real thread duties start here:
Definition at line 26 of file cthread.cc. References control::cthread::run_. 00027 {
00028 cthread* inst = (cthread*) thread_inst;
00030 inst->run_.emit();
00031 // -------------------------------
00033 return 0l;
00034 }
|
1.4.0