]> git.ipfire.org Git - thirdparty/strongswan.git/blame - programs/charon/charon/threads/scheduler.h
- import of strongswan-2.7.0
[thirdparty/strongswan.git] / programs / charon / charon / threads / scheduler.h
CommitLineData
e9d8db1c
MW
1/**
2 * @file scheduler.h
3 *
ca76df97 4 * @brief Interface of scheduler_t.
e9d8db1c
MW
5 *
6 */
7
8/*
9 * Copyright (C) 2005 Jan Hutter, Martin Willi
10 * Hochschule fuer Technik Rapperswil
11 *
12 * This program is free software; you can redistribute it and/or modify it
13 * under the terms of the GNU General Public License as published by the
14 * Free Software Foundation; either version 2 of the License, or (at your
15 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
16 *
17 * This program is distributed in the hope that it will be useful, but
18 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
19 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
20 * for more details.
21 */
22
23#ifndef SCHEDULER_H_
24#define SCHEDULER_H_
25
021c2322 26#include <types.h>
e9d8db1c 27
5796aa16
MW
28typedef struct scheduler_t scheduler_t;
29
e9d8db1c 30/**
3febcf15
JH
31 * @brief The scheduler thread is responsible for timed events.
32 *
33 * The scheduler thread takes out jobs from the event-queue and adds them
e9d8db1c
MW
34 * to the job-queue.
35 *
ca76df97
MW
36 * Starts a thread which does the work, since event-queue is blocking.
37 *
3febcf15
JH
38 * @b Constructors:
39 * - scheduler_create()
40 *
ca76df97 41 * @ingroup threads
e9d8db1c 42 */
5796aa16 43struct scheduler_t {
e9d8db1c
MW
44
45 /**
ca76df97 46 * @brief Destroys a scheduler object.
e9d8db1c 47 *
3febcf15 48 * @param scheduler calling object
e9d8db1c 49 */
d048df5c 50 void (*destroy) (scheduler_t *scheduler);
e9d8db1c
MW
51};
52
ca76df97 53/**
3febcf15 54 * @brief Create a scheduler with its associated thread.
ca76df97
MW
55 *
56 * The thread will start to get jobs form the event queue
57 * and adds them to the job queue.
58 *
59 * @return
3febcf15 60 * - scheduler_t object
d048df5c 61 * - NULL if thread could not be started
ca76df97
MW
62 *
63 * @ingroup threads
64 */
e9d8db1c
MW
65scheduler_t * scheduler_create();
66
67#endif /*SCHEDULER_H_*/