aboutsummaryrefslogtreecommitdiffstats
path: root/Source/charon/threads/scheduler.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/scheduler.h
parent3fe058703ffe537dfdf68b9ad4d9143644230321 (diff)
downloadstrongswan-d048df5cabd2d17713230f260bccebb205740498.tar.bz2
strongswan-d048df5cabd2d17713230f260bccebb205740498.tar.xz
- return value cleanup
Diffstat (limited to 'Source/charon/threads/scheduler.h')
-rw-r--r--Source/charon/threads/scheduler.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/Source/charon/threads/scheduler.h b/Source/charon/threads/scheduler.h
index 9eeccbbf9..da41cd6d7 100644
--- a/Source/charon/threads/scheduler.h
+++ b/Source/charon/threads/scheduler.h
@@ -41,10 +41,8 @@ struct scheduler_t {
* @brief Destroys a scheduler object.
*
* @param scheduler scheduler object
- * @return
- * - SUCCESS in any case
*/
- status_t (*destroy) (scheduler_t *scheduler);
+ void (*destroy) (scheduler_t *scheduler);
};
/**
@@ -54,8 +52,8 @@ struct scheduler_t {
* and adds them to the job queue.
*
* @return
- * - the created scheduler_t instance, or
- * - NULL if thread could not be started
+ * - the created scheduler_t instance, or
+ * - NULL if thread could not be started
*
* @ingroup threads
*/