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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
|
//! A semaphore is an unsigned integer that blocks the kernel thread if
//! the number would become negative.
//! This API supports static initialization and does not require deinitialization.
//!
//! Example:
//! ```
//! var s = Semaphore{};
//!
//! fn consumer() void {
//! s.wait();
//! }
//!
//! fn producer() void {
//! s.post();
//! }
//!
//! const thread = try std.Thread.spawn(.{}, producer, .{});
//! consumer();
//! thread.join();
//! ```
mutex: Mutex = .{},
cond: Condition = .{},
/// It is OK to initialize this field to any value.
permits: usize = 0,
const Semaphore = @This();
const std = @import("../std.zig");
const Mutex = std.Thread.Mutex;
const Condition = std.Thread.Condition;
const builtin = @import("builtin");
const testing = std.testing;
pub fn wait(sem: *Semaphore) void {
sem.mutex.lock();
defer sem.mutex.unlock();
while (sem.permits == 0)
sem.cond.wait(&sem.mutex);
sem.permits -= 1;
if (sem.permits > 0)
sem.cond.signal();
}
pub fn timedWait(sem: *Semaphore, timeout_ns: u64) error{Timeout}!void {
var timeout_timer = std.time.Timer.start() catch unreachable;
sem.mutex.lock();
defer sem.mutex.unlock();
while (sem.permits == 0) {
const elapsed = timeout_timer.read();
if (elapsed > timeout_ns)
return error.Timeout;
const local_timeout_ns = timeout_ns - elapsed;
try sem.cond.timedWait(&sem.mutex, local_timeout_ns);
}
sem.permits -= 1;
if (sem.permits > 0)
sem.cond.signal();
}
pub fn post(sem: *Semaphore) void {
sem.mutex.lock();
defer sem.mutex.unlock();
sem.permits += 1;
sem.cond.signal();
}
test Semaphore {
if (builtin.single_threaded) {
return error.SkipZigTest;
}
const TestContext = struct {
sem: *Semaphore,
n: *i32,
fn worker(ctx: *@This()) void {
ctx.sem.wait();
ctx.n.* += 1;
ctx.sem.post();
}
};
const num_threads = 3;
var sem = Semaphore{ .permits = 1 };
var threads: [num_threads]std.Thread = undefined;
var n: i32 = 0;
var ctx = TestContext{ .sem = &sem, .n = &n };
for (&threads) |*t| t.* = try std.Thread.spawn(.{}, TestContext.worker, .{&ctx});
for (threads) |t| t.join();
sem.wait();
try testing.expect(n == num_threads);
}
test timedWait {
var sem = Semaphore{};
try testing.expectEqual(0, sem.permits);
try testing.expectError(error.Timeout, sem.timedWait(1));
sem.post();
try testing.expectEqual(1, sem.permits);
try sem.timedWait(1);
try testing.expectEqual(0, sem.permits);
}
|