summaryrefslogtreecommitdiff
path: root/kern/semaphore.c
blob: 72e843a9a6c2633c00f8b3e848447a074e2af2c3 (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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
/*
 * Copyright (c) 2017 Richard Braun.
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#include <assert.h>
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>

#include <kern/semaphore.h>
#include <kern/semaphore_i.h>
#include <kern/sleepq.h>

static int
semaphore_wait_slow_common(struct semaphore *semaphore,
                           bool timed, uint64_t ticks)
{
    struct sleepq *sleepq;
    unsigned long flags;
    unsigned int prev;
    int error;

    error = 0;

    sleepq = sleepq_lend(semaphore, false, &flags);

    for (;;) {
        prev = semaphore_dec(semaphore);

        if (prev != 0) {
            break;
        }

        if (!timed) {
            sleepq_wait(sleepq, "sem");
        } else {
            error = sleepq_timedwait(sleepq, "sem", ticks);

            if (error) {
                break;
            }
        }
    }

    sleepq_return(sleepq, flags);

    return error;
}

void
semaphore_wait_slow(struct semaphore *semaphore)
{
    int error;

    error = semaphore_wait_slow_common(semaphore, false, 0);
    assert(!error);
}

int
semaphore_timedwait_slow(struct semaphore *semaphore, uint64_t ticks)
{
    return semaphore_wait_slow_common(semaphore, true, ticks);
}

void
semaphore_post_slow(struct semaphore *semaphore)
{
    struct sleepq *sleepq;
    unsigned long flags;

    sleepq = sleepq_acquire(semaphore, false, &flags);

    if (sleepq == NULL) {
        return;
    }

    sleepq_signal(sleepq);

    sleepq_release(sleepq, flags);
}