diff options
author | Brian Behlendorf <[email protected]> | 2009-07-14 16:35:13 -0700 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2009-07-14 16:35:13 -0700 |
commit | a13cdecdd2b6744547efb0e0ae20836120815b81 (patch) | |
tree | fcf1b70317b178e202bf2a80db068238a89e3353 | |
parent | 864e44e7e03e7ade1810617f55d5f2fb14fc1e94 (diff) |
Remove debug printf
-rw-r--r-- | lib/libzpool/kernel.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/libzpool/kernel.c b/lib/libzpool/kernel.c index 19776bb8a..bbef8bb40 100644 --- a/lib/libzpool/kernel.c +++ b/lib/libzpool/kernel.c @@ -113,7 +113,6 @@ thread_fini(void) /* Wait for all threads to exit via thread_exit() */ VERIFY3S(pthread_mutex_lock(&kthread_lock), ==, 0); while ((count = thread_count()) > 1) { - printf("Waiting for %d\n", count); clock_gettime(CLOCK_REALTIME, &ts); ts.tv_sec += 1; pthread_cond_timedwait(&kthread_cond, &kthread_lock, &ts); |