- return value cleanup

This commit is contained in:
Martin Willi
2005-11-28 20:29:47 +00:00
parent 3fe058703f
commit d048df5cab
85 changed files with 1086 additions and 2680 deletions
+3 -5
View File
@@ -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
*/