Ruby 4.1.0dev (2026-09-21 revision 61de3dd727146cfcf24e8051595bb2fb842f37aa)
thread_sched.h (61de3dd727146cfcf24e8051595bb2fb842f37aa)
1#ifndef RUBY_THREAD_SCHED_H
2#define RUBY_THREAD_SCHED_H
3/**********************************************************************
4
5 thread_sched.h - data structures of the thread/ractor scheduler
6
7 The scheduler itself lives in thread_sched.c and is shared by every
8 platform. This header holds the types it works on; it is included from
9 the platform header (thread_pthread.h / thread_win32.h), which adds the
10 platform specific members and the thread local storage plumbing.
11
12 == platform primitive layer ==
13
14 thread_sched.c is built on top of the following, which the platform
15 implementation (THREAD_IMPL_SRC) has to provide before including it:
16
17 * rb_native_mutex_*() / rb_native_cond_*() (ruby/thread_native.h)
18 * native_thread_create0() / native_thread_destroy() and friends
19 * native_thread_interrupt() -- poke a thread out of a blocking call
20 * timer_thread_polling() -- the timer thread's blocking wait
21 * timer_thread_wakeup_force() -- wake that wait up
22 * TIMER_THREAD_CREATED_P()
23 * USE_MN_THREADS -- 1 enables the M:N scheduler
24 (when 0 the platform supplies the stubs listed at the bottom of
25 thread_sched_mn.c)
26
27**********************************************************************/
28
29// How a thread_sched_wait_events() wait ended. "unavailable" (could not be
30// registered) is not "the event fired": the caller must fall back, not proceed.
31enum thread_sched_wait_result {
32 thread_sched_wait_event, // an event the caller asked for fired
33 thread_sched_wait_timeout, // the timeout expired before any event
34 thread_sched_wait_unavailable, // not registered; the caller must fall back
35};
36
37// this data should be protected by timer_th.waiting_lock
39 enum thread_sched_waiting_flag {
40 thread_sched_waiting_none = 0x00,
41 thread_sched_waiting_timeout = 0x01,
42 thread_sched_waiting_io_read = 0x02,
43 thread_sched_waiting_io_write = 0x08,
44 thread_sched_waiting_io_force = 0x40, // ignore readable
45 } flags;
46
47 struct {
48 // should be compat with hrtime.h
49#ifdef MY_RUBY_BUILD_MAY_TIME_TRAVEL
50 int128_t timeout;
51#else
52 uint64_t timeout;
53#endif
54 uint32_t event_serial;
55 int fd; // -1 for timeout only
56 int result;
57 } data;
58
59 // connected to a timer_th wheel slot (timed) or timer_th.waiting_untimed
60 struct ccan_list_node node;
61
62 /* which wheel slot `node` is on; meaningful only while flags has
63 * thread_sched_waiting_timeout */
64 uint8_t wheel_lvl;
65 uint8_t wheel_slot;
66
67 // connected to rb_fd_waiters.waiters of data.fd
68 struct ccan_list_node fd_node;
69};
70
71// One entry per fd with waiters; fds stay dense, so a table indexed by fd fits.
72// Entries live in fixed chunks: growing must not move a live list head.
74 struct ccan_list_head waiters; // rb_thread_sched_waiting.fd_node
75
76 // The io flags currently armed in epoll/kqueue for this fd: the union of
77 // what its waiters asked for.
78 uint32_t armed_flags;
79
80 // epoll only: the fd is in the interest set (kept across oneshot disarms).
81 bool registered;
82
83 // Bumped on full disarm. Events carry the generation they were armed with,
84 // so one queued before the fd was disarmed (and reused) is recognised.
85 uint32_t generation;
86};
87
88// per-Thread scheduler helper data
90 struct {
91 struct ccan_list_node ubf;
92
93 // connected to ractor->threads.sched.reqdyq
94 // locked by ractor->threads.sched.lock
95 struct ccan_list_node readyq;
96 // Indicates whether thread is on the readyq.
97 // There is no clear relationship between this and th->status.
98 bool is_ready;
99
100 } node;
101
102 struct rb_thread_sched_waiting waiting_reason;
103 uint32_t event_serial;
104
105 // wakes pending on this thread (timer thread or an fd shard claim);
106 // under timer_th.wake_pending_lock
107 uint32_t wake_pending_cnt;
108
109 // parked on its own condvar with a deadline; under the sched lock (see
110 // ubf_waiting). Always false for an M:N thread: its deadline lives on the
111 // timer wheel, and its early wake comes from the timer thread instead.
112 bool waiting_timed;
113
114 bool malloc_stack;
115 void *context_stack;
116 size_t context_stack_size;
117 struct coroutine_context *context;
118};
119
121 rb_atomic_t serial;
122 struct rb_vm_struct *vm;
123
124 rb_nativethread_id_t thread_id;
125
126#ifdef RB_THREAD_T_HAS_NATIVE_ID
127 int tid;
128#endif
129
130#if defined(_WIN32)
131 // signalled by native_thread_interrupt() to break this thread out of a
132 // blocking w32_wait_events()
133 HANDLE interrupt_event;
134#endif
135
136 struct rb_thread_struct *running_thread;
137
138 // The running thread on this shared nt, for the barrier/timeslice scans.
139 // While a scan holds running_th_lock the thread cannot finish parking.
140 rb_nativethread_lock_t running_th_lock;
141 struct rb_thread_struct *running_th;
142 struct ccan_list_node snts_node; // in vm->ractor.sched.ntlist.snts
143 // in vm->ractor.sched.ntlist.running_dnts while running_thread runs
144 struct ccan_list_node running_dnts_node;
145 // barrier_serial stamped by the barrier's counting walk; this nt's
146 // deregistration during that barrier decrements the snapshot count
147 uint32_t barrier_counted_serial;
148
149 // to control native thread; use sched->lock
150 rb_nativethread_cond_t readyq;
151
152#ifdef USE_SIGALTSTACK
153 void *altstack;
154#endif
155
156 struct coroutine_context *nt_context;
157 int dedicated;
158
159 // set when this thread came back from a blocking region with no room left
160 // in the shared pool; it ends when it next asks for work
161 bool retiring;
162
163 // A terminating coroutine records its context here before its final
164 // transfer; this nt's loop reclaims it. coroutine_transfer() cannot be
165 // used because a terminating coroutine never resumes to return a value.
166 struct coroutine_context *dead_co;
167};
168
169// <windows.h> defines these as macros, and the field names below (and in the
170// rest of the interpreter) would be rewritten by them.
171#undef except
172#undef try
173#undef leave
174#undef finally
175
176// per-Ractor
178 rb_nativethread_lock_t lock_;
179#if VM_CHECK_MODE
180 struct rb_thread_struct *lock_owner;
181#endif
182 struct rb_thread_struct *running; // running thread or NULL
183 // Most recently running thread or NULL. If this thread wakes up before the newly running
184 // thread completes the transfer of control, it can interrupt and resume running.
185 // The new thread clears this field when it takes control.
186 struct rb_thread_struct *runnable_hot_th;
187 int runnable_hot_th_waiting;
188 bool is_running;
189
190 bool enable_mn_threads;
191
192 struct ccan_list_head readyq;
193 int readyq_cnt;
194 // ractor scheduling
195 // When not linked in vm->ractor.sched.grq, this node is kept
196 // self-linked (ccan_list_node_init), so "linked?" can be read off the
197 // node itself: enqueuers assert it, and direct transfers cancel an
198 // outstanding entry (see ractor_sched_cancel_enq).
199 struct ccan_list_node grq_node;
200 struct ccan_list_node timeslice_node; // self-linked = not on timeslice.scheds
201};
202
203struct rb_thread_context;
204
205// A coroutine (M:N) thread's teardown runs coroutine_thread_terminated
206// instead of the dedicated-thread path in thread_start_func_2; see the
207// comments there and in thread_sched_mn.c. th->sched.context is cleared in
208// that epilogue, so this also reads as "did not tear down yet".
209// (Only meaningful when USE_MN_THREADS -- gate uses accordingly; the macro
210// itself is a plain pointer test and always compiles.)
211#define th_has_coroutine(th) ((th)->sched.context != NULL)
212
213struct rb_ractor_struct;
214
215// VM wide: what schedules Ractors onto native threads. One per VM, in
216// rb_vm_struct.ractor.sched.
218 rb_nativethread_lock_t lock;
219 struct rb_ractor_struct *lock_owner;
220 bool locked;
221
222 rb_nativethread_cond_t cond; // GRQ
223 rb_atomic_t snt_cnt; // count of shared NTs; lock-free (see native_thread_dedicated_inc)
224 unsigned int dnt_cnt; // count of dedicated NTs; logging only (USE_RUBY_DEBUG_LOG), not atomic
225
226 unsigned int max_cpu;
227 struct ccan_list_head grq; // // Global Ready Queue
228 rb_atomic_t winding_cnt; // native threads between a coroutine epilogue and its reclaim; ruby_vm_destruct waits for 0
229 unsigned int grq_cnt;
230
231 // What the barrier walk visits: threads running on dedicated
232 // nts, and the shared nts (whose running_th fields hold the rest).
233 struct {
234 rb_nativethread_lock_t lock;
235 struct ccan_list_head running_dnts;
236 struct ccan_list_head snts;
237 } ntlist;
238
239 // scheds whose readyq holds waiters: the timer ticks their
240 // running thread (timeslice_scan) and prunes drained entries.
241 struct {
242 rb_nativethread_lock_t lock;
243 struct ccan_list_head scheds;
244 } timeslice;
245
246 // true if timeslice timer is not enable
247 bool timeslice_wait_inf;
248
249 // barrier
250 rb_nativethread_cond_t barrier_complete_cond;
251 rb_nativethread_cond_t barrier_release_cond;
252 // bool; nonzero while a stop-the-world section is active. Set
253 // before the barrier walks the running records; a record moved
254 // after the walk sees it (thread_sched_setup_running_threads).
255 rb_atomic_t barrier_is_waiting;
256 unsigned int barrier_joined_cnt; // threads joined so far; under sched.lock
257 unsigned int barrier_running_cnt; // runners counted by the barrier's walk; under sched.lock
258 unsigned int barrier_serial;
259 struct rb_ractor_struct *barrier_ractor;
260 unsigned int barrier_lock_rec;
261};
262
263void rb_ractor_sched_wait(struct rb_execution_context_struct *ec, struct rb_ractor_struct *cr, rb_unblock_function_t *ptr, void *arg);
264void rb_ractor_sched_wakeup(struct rb_ractor_struct *r, struct rb_thread_struct *th);
265void rb_ractor_sched_wait_terminate(struct rb_vm_struct *vm, rb_nativethread_cond_t *cond, unsigned long msec);
266void rb_thread_wake_fence(struct rb_thread_struct *th);
267
268#endif /* RUBY_THREAD_SCHED_H */
std::atomic< unsigned > rb_atomic_t
Type that is eligible for atomic operations.
Definition atomic.h:69
void rb_unblock_function_t(void *)
This is the type of UBFs.
Definition thread.h:336