blob: fe2a9c87ab9e4fb689b05fe7eeffbd75de686906 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
#ifndef BHLIB_INTERNAL_THREAD_H
#define BHLIB_INTERNAL_THREAD_H
#include <bh/thread.h>
#include "queue.h"
#define BH_THREAD_DONE (1 << 8)
#if defined(BHLIB_USE_PTHREAD)
#include "thread_posix.h"
#elif defined(BHLIB_USE_WINTHREAD)
#include "thread_win.h"
#else
#include "thread_null.h"
#endif
struct bh_task_s
{
void (*func)(void *);
void *data;
int flags;
};
struct bh_thread_pool_s
{
bh_thread_t *threads;
bh_queue_t tasks;
bh_mutex_t lock;
bh_cond_t new_task;
bh_cond_t done_task;
size_t size;
size_t active;
int shutdown;
};
void bh_task_init(bh_task_t *task,
void (*func)(void *),
void *data,
int flags);
void bh_task_destroy(bh_task_t *task);
void bh_thread_pool_worker(void *arg);
#endif /* BHLIB_INTERNAL_THREAD_H */
|