Inheritance diagram for myThread::
Public Methods | |
myThread () | |
~myThread () | |
void | Setup () |
void | Execute (void *arg) |
Definition at line 25 of file debug_test.cpp.
|
Default constructor calls Thread() Definition at line 29 of file debug_test.cpp. 00030 { 00031 Thread(); 00032 } |
|
Default destructor calls pthread_exit() Definition at line 34 of file debug_test.cpp. 00035 { 00036 pthread_exit(0); 00037 } |
|
Execute prints out arg as if it were a character Reimplemented from Thread. Definition at line 44 of file debug_test.cpp. 00045 { 00046 {assert(arg != NULL);} 00047 char *t = (char *) arg; 00048 debug2_("argument passed to thread", *t, LOG_NO);//cout << *t << std::endl; 00049 } |
|
Nothing to setup really Reimplemented from Thread. Definition at line 39 of file debug_test.cpp. 00040 { 00041 } |