wrappers: move thread start message to trace

This commit is contained in:
Adam Sutton 2014-04-16 20:31:58 +01:00
parent ade9e3c26d
commit cbbb227aa4

View file

@ -118,7 +118,7 @@ thread_wrapper ( void *p )
signal(SIGTERM, doexit);
/* Run */
tvhdebug("thread", "created thread %ld [%s / %p(%p)]",
tvhtrace("thread", "created thread %ld [%s / %p(%p)]",
(long)pthread_self(), ts->name, ts->run, ts->arg);
void *r = ts->run(ts->arg);
free(ts);