aboutsummaryrefslogtreecommitdiff
path: root/src/thread_pool.cpp
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2021-05-04 00:45:09 +0100
committergingerBill <bill@gingerbill.org>2021-05-04 00:45:09 +0100
commit17001bf38c85825c4f7191f5a784ab8a65baeb40 (patch)
tree904356136b3d4994ba0485bfae19e1d6b23f3e0a /src/thread_pool.cpp
parentb83e67f45f3bde2abab70154d76307a9e3d7f4e3 (diff)
Nearly approach full functionality for -use-separate-modules coupled with multithreading
Diffstat (limited to 'src/thread_pool.cpp')
-rw-r--r--src/thread_pool.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/thread_pool.cpp b/src/thread_pool.cpp
index 2467ba609..73118321b 100644
--- a/src/thread_pool.cpp
+++ b/src/thread_pool.cpp
@@ -35,8 +35,6 @@ void thread_pool_destroy(ThreadPool *pool);
void thread_pool_start(ThreadPool *pool);
void thread_pool_join(ThreadPool *pool);
void thread_pool_add_task(ThreadPool *pool, WorkerTaskProc *proc, void *data);
-void thread_pool_kick(ThreadPool *pool);
-void thread_pool_kick_and_wait(ThreadPool *pool);
GB_THREAD_PROC(worker_thread_internal);
void thread_pool_init(ThreadPool *pool, gbAllocator const &a, isize thread_count, char const *worker_prefix) {
@@ -181,4 +179,3 @@ GB_THREAD_PROC(worker_thread_internal) {
return 0;
}
-