Various C++ Examples (including IPC)
Version: 1.0.0
|
structure for static wrapper function arguments More...
Public Attributes | |
void *(* | func )(void *) |
pointer to user defined function More... | |
void(* | cancel_func )(void *) |
function to call when we are canceled More... | |
void * | arg |
user arguments for user function More... | |
ThreadMgr * | thisObject |
the this object -one per thread...EEEEK! More... | |
structure for static wrapper function arguments
Definition at line 63 of file threadDeath3.cc.
void* ThreadMgr::func_arguments::arg |
user arguments for user function
Definition at line 72 of file threadDeath3.cc.
Referenced by ThreadMgr::createThread(), and ThreadMgr::func().
void(* ThreadMgr::func_arguments::cancel_func) (void *) |
function to call when we are canceled
Definition at line 69 of file threadDeath3.cc.
Referenced by ThreadMgr::createThread(), and ThreadMgr::func().
void*(* ThreadMgr::func_arguments::func) (void *) |
pointer to user defined function
Definition at line 66 of file threadDeath3.cc.
Referenced by ThreadMgr::createThread(), and ThreadMgr::func().
ThreadMgr* ThreadMgr::func_arguments::thisObject |
the this object -one per thread...EEEEK!
Definition at line 75 of file threadDeath3.cc.
Referenced by ThreadMgr::createThread(), and ThreadMgr::func().