documentation fixes and updates

This commit is contained in:
Martin Willi
2007-06-11 12:11:41 +00:00
parent 9fe1a1ca76
commit 432b298e40
7 changed files with 40 additions and 21 deletions
+1 -1
View File
@@ -56,7 +56,7 @@ struct private_callback_job_t {
pthread_t thread;
/**
* mutex to synchronize thread startup/cancellation
* mutex to access jobs interna
*/
pthread_mutex_t mutex;
+11 -2
View File
@@ -33,6 +33,11 @@ typedef enum job_requeue_t job_requeue_t;
/**
* @brief Job requeueing policy
*
* The job requeueing policy defines how a job is handled when the callback
* function returns.
*
* @ingroup jobs
*/
enum job_requeue_t {
@@ -42,12 +47,12 @@ enum job_requeue_t {
JOB_REQUEUE_NONE,
/**
* Reque the job farly, meaning it has to queue as any other job
* Reque the job fairly, meaning it has to requeue as any other job
*/
JOB_REQUEUE_FAIR,
/**
* Reexecute the job directly, without the need of requeing it
* Reexecute the job directly, without the need of requeueing it
*/
JOB_REQUEUE_DIRECT,
};
@@ -60,6 +65,8 @@ enum job_requeue_t {
*
* @param data param supplied to job
* @return requeing policy how to requeue the job
*
* @ingroup jobs
*/
typedef job_requeue_t (*callback_job_cb_t)(void *data);
@@ -72,6 +79,8 @@ typedef job_requeue_t (*callback_job_cb_t)(void *data);
*
* @param data param supplied to job
* @return requeing policy how to requeue the job
*
* @ingroup jobs
*/
typedef void (*callback_job_cleanup_t)(void *data);
+3 -1
View File
@@ -98,7 +98,9 @@ struct processor_t {
/**
* @brief Create the thread pool without any threads.
*
*
* Use the set_threads method to start processing jobs.
*
* @return processor_t object
*
* @ingroup processing