4 * @brief Interface of scheduler_t.
9 * Copyright (C) 2005-2006 Martin Willi
10 * Copyright (C) 2005 Jan Hutter
11 * Hochschule fuer Technik Rapperswil
13 * This program is free software; you can redistribute it and/or modify it
14 * under the terms of the GNU General Public License as published by the
15 * Free Software Foundation; either version 2 of the License, or (at your
16 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
18 * This program is distributed in the hope that it will be useful, but
19 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
20 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
29 typedef struct scheduler_t scheduler_t
;
32 * @brief The scheduler thread is responsible for timed events.
34 * The scheduler thread takes out jobs from the event-queue and adds them
37 * Starts a thread which does the work, since event-queue is blocking.
40 * - scheduler_create()
47 * @brief Destroys a scheduler object.
49 * @param scheduler calling object
51 void (*destroy
) (scheduler_t
*scheduler
);
55 * @brief Create a scheduler with its associated thread.
57 * The thread will start to get jobs form the event queue
58 * and adds them to the job queue.
61 * - scheduler_t object
62 * - NULL if thread could not be started
66 scheduler_t
* scheduler_create(void);
68 #endif /*SCHEDULER_H_*/