summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrian Behlendorf <[email protected]>2009-07-14 16:35:13 -0700
committerBrian Behlendorf <[email protected]>2009-07-14 16:35:13 -0700
commita13cdecdd2b6744547efb0e0ae20836120815b81 (patch)
treefcf1b70317b178e202bf2a80db068238a89e3353
parent864e44e7e03e7ade1810617f55d5f2fb14fc1e94 (diff)
Remove debug printf
-rw-r--r--lib/libzpool/kernel.c1
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);