xref: /xnu-11417.140.69/doc/primitives/sched_cond.md (revision 43a90889846e00bfb5cf1d255cdc0a701a1e05a4)
1*43a90889SApple OSS Distributions# Atomic Condition Variables for Thread Synchronization
2*43a90889SApple OSS Distributions
3*43a90889SApple OSS DistributionsQuickly synchronizing when multiple threads could send wakeups.
4*43a90889SApple OSS Distributions
5*43a90889SApple OSS Distributions## Overview
6*43a90889SApple OSS Distributions
7*43a90889SApple OSS Distributions`sched_cond_*` (see `sched_prim.h`) provides a means of optimized wake/sleep
8*43a90889SApple OSS Distributionssynchronization on kernel threads. Specifically, it provides a wrapper for
9*43a90889SApple OSS Distributions`assert_wait`/`thread_block` & `thread_wake` patterns with fast paths.
10*43a90889SApple OSS Distributions
11*43a90889SApple OSS Distributions## Interfaces
12*43a90889SApple OSS Distributions* `sched_cond_t` / `sched_cond_atomic_t` - Atomic condition variable type to synchronize on
13*43a90889SApple OSS Distributions* `sched_cond_init(sched_cond_t *cond)` - Initialize the atomic condition var
14*43a90889SApple OSS Distributions* `sched_cond_wait(sched_cond_t *cond, ...)` - Set state to inactive and wait for a wakeup on cond
15*43a90889SApple OSS Distributions* `sched_cond_signal(sched_cond_t *cond, ...)` - Issue a wakeup on cond for the specified thread
16*43a90889SApple OSS Distributions* `sched_cond_ack(sched_cond_t *cond)` - Acknowledge the wakeup on cond and set state to active
17*43a90889SApple OSS Distributions
18*43a90889SApple OSS Distributions## Limitations of Existing Interfaces
19*43a90889SApple OSS Distributions
20*43a90889SApple OSS DistributionsConsider the following example of a producer-consumer relationship.
21*43a90889SApple OSS Distributions
22*43a90889SApple OSS Distributions### Producer Thread
23*43a90889SApple OSS Distributions```c
24*43a90889SApple OSS Distributionswhile(1) {
25*43a90889SApple OSS Distributions	...
26*43a90889SApple OSS Distributions	thread_wake_thread(..., consumer_thread); // (A)
27*43a90889SApple OSS Distributions}
28*43a90889SApple OSS Distributions```
29*43a90889SApple OSS Distributions### Consumer Thread
30*43a90889SApple OSS Distributions```c
31*43a90889SApple OSS Distributionsvoid work_loop_continuation()
32*43a90889SApple OSS Distributions{
33*43a90889SApple OSS Distributions	// (B)
34*43a90889SApple OSS Distributions	...
35*43a90889SApple OSS Distributions	assert_wait(...); // (C)
36*43a90889SApple OSS Distributions	thread_block(..., work_loop_continuation); // (D)
37*43a90889SApple OSS Distributions}
38*43a90889SApple OSS Distributions```
39*43a90889SApple OSS Distributions
40*43a90889SApple OSS DistributionsThis scheme has two key inefficiences:
41*43a90889SApple OSS Distributions1. Multiple calls to wake the consumer thread (A) may be made before the consumer_thread has awoken.
42*43a90889SApple OSS Distributions   This results in precious CPU cycles being spent in (A) to wake the thread despite the fact that
43*43a90889SApple OSS Distributions   it has already been queued.
44*43a90889SApple OSS Distributions2. If in the time since waking (B) and blocking (D), the consumer thread has been sent a wakeup (A),
45*43a90889SApple OSS Distributions   the thread will still yield (D), thus spending precious CPU cycles setting itself up to block only
46*43a90889SApple OSS Distributions   to be immediately queued once more.
47*43a90889SApple OSS Distributions
48*43a90889SApple OSS Distributions
49*43a90889SApple OSS Distributions## Example Usage
50*43a90889SApple OSS Distributions
51*43a90889SApple OSS Distributions`sched_cond_t` and its functions provide fast paths for (1) and (2) by wrapping `thread_wake_thread` and
52*43a90889SApple OSS Distributions`assert_wait/thread_block` with atomic bit operations.
53*43a90889SApple OSS Distributions
54*43a90889SApple OSS DistributionsUsing these enhancements, the previous example can be revised to:
55*43a90889SApple OSS Distributions
56*43a90889SApple OSS Distributions### Producer Thread
57*43a90889SApple OSS Distributions```c
58*43a90889SApple OSS Distributionswhile(1) {
59*43a90889SApple OSS Distributions	...
60*43a90889SApple OSS Distributions	sched_cond_signal(&my_cond, ...); // (E)
61*43a90889SApple OSS Distributions}
62*43a90889SApple OSS Distributions```
63*43a90889SApple OSS Distributions### Consumer Thread
64*43a90889SApple OSS Distributions```c
65*43a90889SApple OSS Distributionsvoid work_loop_continuation()
66*43a90889SApple OSS Distributions{
67*43a90889SApple OSS Distributions	sched_cond_ack(&my_cond); // (F)
68*43a90889SApple OSS Distributions	while (1) {
69*43a90889SApple OSS Distributions		...
70*43a90889SApple OSS Distributions		sched_cond_wait(&my_cond, ..., work_loop_continuation); // (G)
71*43a90889SApple OSS Distributions	}
72*43a90889SApple OSS Distributions}
73*43a90889SApple OSS Distributions```
74*43a90889SApple OSS Distributions
75*43a90889SApple OSS DistributionsIn this example, the producer thread signals the consumer (E), resulting in an explicit wake (A) iff the consumer is
76*43a90889SApple OSS Distributionsnot awake and has not already been issued an un-acked wakeup. Conversely, the consumer acks the wakeup (F) once awake,
77*43a90889SApple OSS Distributionssignalling that it is active and clearing the queued wakeup. Once done with its consumption it attempts to wait on the
78*43a90889SApple OSS Distributionscond (G), signalling that it is inactive and checking for any wakeups that have been issued since the last ack (F).
79*43a90889SApple OSS DistributionsIf a wakeup has been issued, the consumer immediately acks the wakeup and returns to re-enter the work loop. Else,
80*43a90889SApple OSS Distributionsit will block as in (D).
81*43a90889SApple OSS Distributions
82*43a90889SApple OSS Distributions### On acknowledging wakeups
83*43a90889SApple OSS Distributions
84*43a90889SApple OSS DistributionsOne may note that the adoption of `sched_cond_*` involves adding an additional step (ack) to the consumers work loop. This
85*43a90889SApple OSS Distributionsstep is critical for two reasons.
86*43a90889SApple OSS Distributions
87*43a90889SApple OSS Distributions1. Wakeups can be coalesced without potential loss of data. By ack-ing the wakeup *prior* to doing work, wakeups
88*43a90889SApple OSS Distributions    that are issued while the thread is active are guaranteed to be observed because the consumer will check for wakeups since the
89*43a90889SApple OSS Distributions    last ack before giong to sleep.
90*43a90889SApple OSS Distributions2. Wakeups need not explicitly `thread_wake` the consumer thread if it is already awake. This is because the consumer thread will not
91*43a90889SApple OSS Distributions    block if it observes a wakeup has been issued while it was awake.
92*43a90889SApple OSS Distributions
93