mirror of
https://github.com/panda3d/panda3d.git
synced 2025-09-27 23:34:57 -04:00
removed printfs
This commit is contained in:
parent
c29cd37138
commit
3a18dd8181
@ -44,17 +44,12 @@ class EXPCL_PANDAEXPRESS base_thread {
|
||||
const priority_t pri = PRIORITY_NORMAL) :
|
||||
_thread(thread_class::Null), _fn_void(fn), _fn_ret(0L), _mutex(),
|
||||
_state(STATE_NEW), _priority(pri), _thread_arg(arg), _detached(true) {
|
||||
|
||||
|
||||
printf("Base_thread constructor 1 called.\n");
|
||||
common_constructor();
|
||||
}
|
||||
INLINE base_thread(void* (*fn)(void*), void* arg = (void*)0L,
|
||||
const priority_t pri = PRIORITY_NORMAL) :
|
||||
_thread(thread_class::Null), _fn_void(0L), _fn_ret(fn), _mutex(),
|
||||
_state(STATE_NEW), _priority(pri), _thread_arg(arg), _detached(false) {
|
||||
|
||||
printf("Base_thread constructor 2 called.\n");
|
||||
common_constructor();
|
||||
}
|
||||
// causes this thread to start executing
|
||||
|
Loading…
x
Reference in New Issue
Block a user