diff options
author | Martin Willi <martin@strongswan.org> | 2005-12-04 11:46:58 +0000 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2005-12-04 11:46:58 +0000 |
commit | 25c41f4df7079b64ba53184e47edbc012ae96123 (patch) | |
tree | 93d1ff241cd7bf140c4780478750a20316a9c516 /Source/charon/threads/thread_pool.c | |
parent | 26cfe75e4d4266c75ad6adb5244beec6731e6956 (diff) | |
download | strongswan-25c41f4df7079b64ba53184e47edbc012ae96123.tar.bz2 strongswan-25c41f4df7079b64ba53184e47edbc012ae96123.tar.xz |
- logging cleanup
- pid re-replaced with thread_ids, since nptl does not distinguish pids between threads
Diffstat (limited to 'Source/charon/threads/thread_pool.c')
-rw-r--r-- | Source/charon/threads/thread_pool.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/charon/threads/thread_pool.c b/Source/charon/threads/thread_pool.c index 26c4d1f29..0146e1c6e 100644 --- a/Source/charon/threads/thread_pool.c +++ b/Source/charon/threads/thread_pool.c @@ -24,7 +24,6 @@ #include <pthread.h> #include <string.h> #include <errno.h> -#include <unistd.h> #include "thread_pool.h" @@ -119,7 +118,7 @@ static void process_jobs(private_thread_pool_t *this) /* cancellation disabled by default */ pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, NULL); - this->worker_logger->log(this->worker_logger, CONTROL, "worker thread running, pid: %d", getpid()); + this->worker_logger->log(this->worker_logger, CONTROL, "worker thread running, thread_id: %u", (int)pthread_self()); for (;;) { job_t *job; |