]> gitweb @ CieloNegro.org - bindings-apr-util.git/commitdiff
Bindings.APR.Thread.Pool
authorPHO <pho@cielonegro.org>
Wed, 6 Oct 2010 14:18:31 +0000 (23:18 +0900)
committerPHO <pho@cielonegro.org>
Wed, 6 Oct 2010 14:18:31 +0000 (23:18 +0900)
Bindings/APR/Thread/Pool.hsc [new file with mode: 0644]
bindings-apr-util.cabal

diff --git a/Bindings/APR/Thread/Pool.hsc b/Bindings/APR/Thread/Pool.hsc
new file mode 100644 (file)
index 0000000..885a787
--- /dev/null
@@ -0,0 +1,47 @@
+#include <bindings.dsl.h>
+#include <apr_thread_pool.h>
+
+module Bindings.APR.Thread.Pool where
+#strict_import
+import Bindings.APR
+import Bindings.APR.ErrNo
+import Bindings.APR.Pools
+import Bindings.APR.Thread.Proc
+import Bindings.APR.Time
+
+#if APR_HAS_THREADS
+
+#  opaque_t apr_thread_pool_t
+
+#  num APR_THREAD_TASK_PRIORITY_LOWEST
+#  num APR_THREAD_TASK_PRIORITY_LOW
+#  num APR_THREAD_TASK_PRIORITY_NORMAL
+#  num APR_THREAD_TASK_PRIORITY_HIGH
+#  num APR_THREAD_TASK_PRIORITY_HIGHEST
+
+#  ccall apr_thread_pool_create      , Ptr (Ptr <apr_thread_pool_t>) -> <apr_size_t> -> <apr_size_t> -> Ptr <apr_pool_t> -> IO <apr_status_t>
+#  ccall apr_thread_pool_destroy     , Ptr <apr_thread_pool_t> -> IO <apr_status_t>
+#  ccall apr_thread_pool_push        , Ptr <apr_thread_pool_t> -> <apr_thread_start_t> -> Ptr () -> <apr_byte_t> -> Ptr () -> IO <apr_status_t>
+#  ccall apr_thread_pool_schedule    , Ptr <apr_thread_pool_t> -> <apr_thread_start_t> -> Ptr () -> <apr_interval_time_t> -> Ptr () -> IO <apr_status_t>
+#  ccall apr_thread_pool_top         , Ptr <apr_thread_pool_t> -> <apr_thread_start_t> -> Ptr () -> <apr_byte_t> -> Ptr () -> IO <apr_status_t>
+#  ccall apr_thread_pool_tasks_cancel, Ptr <apr_thread_pool_t> -> Ptr () -> IO <apr_status_t>
+#  ccall apr_thread_pool_tasks_count , Ptr <apr_thread_pool_t> -> IO <apr_size_t>
+#  ccall apr_thread_pool_scheduled_tasks_count, Ptr <apr_thread_pool_t> -> IO <apr_size_t>
+#  ccall apr_thread_pool_threads_count        , Ptr <apr_thread_pool_t> -> IO <apr_size_t>
+#  ccall apr_thread_pool_busy_count           , Ptr <apr_thread_pool_t> -> IO <apr_size_t>
+#  ccall apr_thread_pool_idle_count           , Ptr <apr_thread_pool_t> -> IO <apr_size_t>
+#  ccall apr_thread_pool_idle_max_set         , Ptr <apr_thread_pool_t> -> <apr_size_t> -> IO <apr_size_t>
+#  ccall apr_thread_pool_tasks_run_count      , Ptr <apr_thread_pool_t> -> IO <apr_size_t>
+#  ccall apr_thread_pool_tasks_high_count     , Ptr <apr_thread_pool_t> -> IO <apr_size_t>
+#  ccall apr_thread_pool_threads_high_count   , Ptr <apr_thread_pool_t> -> IO <apr_size_t>
+#  ccall apr_thread_pool_threads_idle_timeout_count, Ptr <apr_thread_pool_t> -> IO <apr_size_t>
+#  ccall apr_thread_pool_idle_max_get  , Ptr <apr_thread_pool_t> -> IO <apr_size_t>
+#  ccall apr_thread_pool_thread_max_set, Ptr <apr_thread_pool_t> -> <apr_size_t> -> IO <apr_size_t>
+#  ccall apr_thread_pool_idle_wait_set , Ptr <apr_thread_pool_t> -> <apr_interval_time_t> -> IO <apr_interval_time_t>
+#  ccall apr_thread_pool_idle_wait_get , Ptr <apr_thread_pool_t> -> IO <apr_interval_time_t>
+#  ccall apr_thread_pool_thread_max_get, Ptr <apr_thread_pool_t> -> IO <apr_size_t>
+#  ccall apr_thread_pool_threshold_set , Ptr <apr_thread_pool_t> -> <apr_size_t> -> IO <apr_size_t>
+#  ccall apr_thread_pool_threshold_get , Ptr <apr_thread_pool_t> -> IO <apr_size_t>
+#  ccall apr_thread_pool_task_owner_get, Ptr <apr_thread_t> -> Ptr (Ptr ()) -> IO <apr_status_t>
+
+#endif
\ No newline at end of file
index b7d1c24e4f769d828050cd152f188ba65404fea8..75952166f82de8247c96f4a8b941607eb38da84e 100644 (file)
@@ -51,6 +51,7 @@ Library
         Bindings.APR.SDBM
         Bindings.APR.SHA1
         Bindings.APR.StrMatch
+        Bindings.APR.Thread.Pool
         Bindings.APR.XLate
 
     C-Sources: