APR Thread Pool Library.
More...
#include "apu.h"
#include "apr_thread_proc.h"
Go to the source code of this file.
|
#define | APR_THREAD_TASK_PRIORITY_LOWEST 0 |
|
#define | APR_THREAD_TASK_PRIORITY_LOW 63 |
|
#define | APR_THREAD_TASK_PRIORITY_NORMAL 127 |
|
#define | APR_THREAD_TASK_PRIORITY_HIGH 191 |
|
#define | APR_THREAD_TASK_PRIORITY_HIGHEST 255 |
|
|
apr_status_t | apr_thread_pool_create (apr_thread_pool_t **me, apr_size_t init_threads, apr_size_t max_threads, apr_pool_t *pool) |
|
apr_status_t | apr_thread_pool_destroy (apr_thread_pool_t *me) |
|
apr_status_t | apr_thread_pool_push (apr_thread_pool_t *me, apr_thread_start_t func, void *param, apr_byte_t priority, void *owner) |
|
apr_status_t | apr_thread_pool_schedule (apr_thread_pool_t *me, apr_thread_start_t func, void *param, apr_interval_time_t time, void *owner) |
|
apr_status_t | apr_thread_pool_top (apr_thread_pool_t *me, apr_thread_start_t func, void *param, apr_byte_t priority, void *owner) |
|
apr_status_t | apr_thread_pool_tasks_cancel (apr_thread_pool_t *me, void *owner) |
|
apr_size_t | apr_thread_pool_tasks_count (apr_thread_pool_t *me) |
|
apr_size_t | apr_thread_pool_scheduled_tasks_count (apr_thread_pool_t *me) |
|
apr_size_t | apr_thread_pool_threads_count (apr_thread_pool_t *me) |
|
apr_size_t | apr_thread_pool_busy_count (apr_thread_pool_t *me) |
|
apr_size_t | apr_thread_pool_idle_count (apr_thread_pool_t *me) |
|
apr_size_t | apr_thread_pool_idle_max_set (apr_thread_pool_t *me, apr_size_t cnt) |
|
apr_size_t | apr_thread_pool_tasks_run_count (apr_thread_pool_t *me) |
|
apr_size_t | apr_thread_pool_tasks_high_count (apr_thread_pool_t *me) |
|
apr_size_t | apr_thread_pool_threads_high_count (apr_thread_pool_t *me) |
|
apr_size_t | apr_thread_pool_threads_idle_timeout_count (apr_thread_pool_t *me) |
|
apr_size_t | apr_thread_pool_idle_max_get (apr_thread_pool_t *me) |
|
apr_size_t | apr_thread_pool_thread_max_set (apr_thread_pool_t *me, apr_size_t cnt) |
|
apr_interval_time_t | apr_thread_pool_idle_wait_set (apr_thread_pool_t *me, apr_interval_time_t timeout) |
|
apr_interval_time_t | apr_thread_pool_idle_wait_get (apr_thread_pool_t *me) |
|
apr_size_t | apr_thread_pool_thread_max_get (apr_thread_pool_t *me) |
|
apr_size_t | apr_thread_pool_threshold_set (apr_thread_pool_t *me, apr_size_t val) |
|
apr_size_t | apr_thread_pool_threshold_get (apr_thread_pool_t *me) |
|
apr_status_t | apr_thread_pool_task_owner_get (apr_thread_t *thd, void **owner) |
|