aboutsummaryrefslogtreecommitdiffstats
path: root/src/charon/processing
diff options
context:
space:
mode:
authorMartin Willi <martin@strongswan.org>2007-04-11 07:20:39 +0000
committerMartin Willi <martin@strongswan.org>2007-04-11 07:20:39 +0000
commit3b138b84222abd682d249cccbe2a69b4b12ff4c7 (patch)
tree20ad2b820f90929a1989095e7f943008ac347e0c /src/charon/processing
parent2ed8cee162a32c8e781472e7190e109866972cae (diff)
downloadstrongswan-3b138b84222abd682d249cccbe2a69b4b12ff4c7.tar.bz2
strongswan-3b138b84222abd682d249cccbe2a69b4b12ff4c7.tar.xz
cleaned up apidoc
added some comments removed configuration.[ch], as it does not make sense like it is
Diffstat (limited to 'src/charon/processing')
-rw-r--r--src/charon/processing/event_queue.h4
-rw-r--r--src/charon/processing/job_queue.h4
-rw-r--r--src/charon/processing/scheduler.h4
-rw-r--r--src/charon/processing/thread_pool.h4
4 files changed, 8 insertions, 8 deletions
diff --git a/src/charon/processing/event_queue.h b/src/charon/processing/event_queue.h
index 3258b254f..c85286bf2 100644
--- a/src/charon/processing/event_queue.h
+++ b/src/charon/processing/event_queue.h
@@ -45,7 +45,7 @@ typedef struct event_queue_t event_queue_t;
* @b Constructors:
* - event_queue_create()
*
- * @ingroup queues
+ * @ingroup processing
*/
struct event_queue_t {
@@ -111,7 +111,7 @@ struct event_queue_t {
*
* @returns event_queue_t object
*
- * @ingroup queues
+ * @ingroup processing
*/
event_queue_t *event_queue_create(void);
diff --git a/src/charon/processing/job_queue.h b/src/charon/processing/job_queue.h
index 26e1492d8..9b58588ae 100644
--- a/src/charon/processing/job_queue.h
+++ b/src/charon/processing/job_queue.h
@@ -40,7 +40,7 @@ typedef struct job_queue_t job_queue_t;
* @b Constructors:
* - job_queue_create()
*
- * @ingroup queues
+ * @ingroup processing
*/
struct job_queue_t {
@@ -93,7 +93,7 @@ struct job_queue_t {
*
* @return job_queue_t object
*
- * @ingroup queues
+ * @ingroup processing
*/
job_queue_t *job_queue_create(void);
diff --git a/src/charon/processing/scheduler.h b/src/charon/processing/scheduler.h
index daecce3c6..bea93e7c9 100644
--- a/src/charon/processing/scheduler.h
+++ b/src/charon/processing/scheduler.h
@@ -39,7 +39,7 @@ typedef struct scheduler_t scheduler_t;
* @b Constructors:
* - scheduler_create()
*
- * @ingroup threads
+ * @ingroup processing
*/
struct scheduler_t {
@@ -61,7 +61,7 @@ struct scheduler_t {
* - scheduler_t object
* - NULL if thread could not be started
*
- * @ingroup threads
+ * @ingroup processing
*/
scheduler_t * scheduler_create(void);
diff --git a/src/charon/processing/thread_pool.h b/src/charon/processing/thread_pool.h
index 8e1989bda..09a6312a8 100644
--- a/src/charon/processing/thread_pool.h
+++ b/src/charon/processing/thread_pool.h
@@ -41,7 +41,7 @@ typedef struct thread_pool_t thread_pool_t;
*
* @todo Add support for dynamic thread handling
*
- * @ingroup threads
+ * @ingroup processing
*/
struct thread_pool_t {
@@ -79,7 +79,7 @@ struct thread_pool_t {
* - thread_pool_t object if one ore more threads could be started, or
* - NULL if no threads could be created
*
- * @ingroup threads
+ * @ingroup processing
*/
thread_pool_t *thread_pool_create(size_t pool_size);