aboutsummaryrefslogtreecommitdiffstats
path: root/Source/charon/threads/thread_pool.h
diff options
context:
space:
mode:
authorMartin Willi <martin@strongswan.org>2005-11-28 20:29:47 +0000
committerMartin Willi <martin@strongswan.org>2005-11-28 20:29:47 +0000
commitd048df5cabd2d17713230f260bccebb205740498 (patch)
tree5c08427945e6a94421e84deada90aac2065fde18 /Source/charon/threads/thread_pool.h
parent3fe058703ffe537dfdf68b9ad4d9143644230321 (diff)
downloadstrongswan-d048df5cabd2d17713230f260bccebb205740498.tar.bz2
strongswan-d048df5cabd2d17713230f260bccebb205740498.tar.xz
- return value cleanup
Diffstat (limited to 'Source/charon/threads/thread_pool.h')
-rw-r--r--Source/charon/threads/thread_pool.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/Source/charon/threads/thread_pool.h b/Source/charon/threads/thread_pool.h
index 46166bf52..2dcef337b 100644
--- a/Source/charon/threads/thread_pool.h
+++ b/Source/charon/threads/thread_pool.h
@@ -52,10 +52,8 @@ struct thread_pool_t {
* sends cancellation request to all threads and AWAITS their termination.
*
* @param thread_pool thread_pool_t object
- * @return
- * - SUCCESS in any case
*/
- status_t (*destroy) (thread_pool_t *thread_pool);
+ void (*destroy) (thread_pool_t *thread_pool);
};
/**