summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2007-10-17 21:48:53 +0000
committerwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2007-10-17 21:48:53 +0000
commit82fdd59ac434f73555170d867d5f707b1ab6a31e (patch)
tree91e9226d4664cfe7d225cb8c42b210cc339163f1 /test
parent2cc4ea3d849a37bc5989b4e303c81b1239e58226 (diff)
downloadlibapr-util-82fdd59ac434f73555170d867d5f707b1ab6a31e.tar.gz
Not thread_proc threads, but thread_pool threads
git-svn-id: http://svn.apache.org/repos/asf/apr/apr-util/trunk@585717 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test')
-rw-r--r--test/testqueue.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/test/testqueue.c b/test/testqueue.c
index ebd55fea..cb82e567 100644
--- a/test/testqueue.c
+++ b/test/testqueue.c
@@ -58,9 +58,6 @@ static void * APR_THREAD_FUNC consumer(apr_thread_t *thd, void *data)
apr_sleep(sleeprate); /* sleep this long to acheive our rate */
}
- apr_thread_exit(thd, rv);
-
- /* not reached */
return NULL;
}
@@ -88,9 +85,6 @@ static void * APR_THREAD_FUNC producer(apr_thread_t *thd, void *data)
apr_sleep(sleeprate); /* sleep this long to acheive our rate */
}
- apr_thread_exit(thd, rv);
-
- /* not reached */
return NULL;
}