blob: 6257e02998236d6a91c5aed2bdfc26cc58cef89d (
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
// SPDX-License-Identifier: GPL-3.0-or-later
#include "completion.h"
void completion_init(struct completion *p)
{
p->completed = 0;
p->completed_jobs = 0;
fatal_assert(0 == uv_cond_init(&p->cond));
fatal_assert(0 == uv_mutex_init(&p->mutex));
}
void completion_destroy(struct completion *p)
{
uv_cond_destroy(&p->cond);
uv_mutex_destroy(&p->mutex);
}
void completion_wait_for(struct completion *p)
{
uv_mutex_lock(&p->mutex);
while (0 == p->completed) {
uv_cond_wait(&p->cond, &p->mutex);
}
fatal_assert(1 == p->completed);
uv_mutex_unlock(&p->mutex);
}
void completion_mark_complete(struct completion *p)
{
uv_mutex_lock(&p->mutex);
p->completed = 1;
uv_cond_broadcast(&p->cond);
uv_mutex_unlock(&p->mutex);
}
unsigned completion_wait_for_a_job(struct completion *p, unsigned completed_jobs)
{
uv_mutex_lock(&p->mutex);
while (0 == p->completed && p->completed_jobs <= completed_jobs) {
uv_cond_wait(&p->cond, &p->mutex);
}
completed_jobs = p->completed_jobs;
uv_mutex_unlock(&p->mutex);
return completed_jobs;
}
void completion_mark_complete_a_job(struct completion *p)
{
uv_mutex_lock(&p->mutex);
p->completed_jobs++;
uv_cond_broadcast(&p->cond);
uv_mutex_unlock(&p->mutex);
}
bool completion_is_done(struct completion *p)
{
bool ret;
uv_mutex_lock(&p->mutex);
ret = p->completed;
uv_mutex_unlock(&p->mutex);
return ret;
}
|