summaryrefslogtreecommitdiff
path: root/inits.c
diff options
context:
space:
mode:
authorSamuel Williams <samuel.williams@oriontransfer.co.nz>2021-02-09 19:39:56 +1300
committerGitHub <noreply@github.com>2021-02-09 19:39:56 +1300
commit5f69a7f60467fa58c2f998daffab43e118bff36c (patch)
treef60e3a5add29eb9cc7e68433c4e373e2a2facab7 /inits.c
parent3c593f28ede99b77d4fe3258f9bda78dcee238a3 (diff)
Expose scheduler as public interface & bug fixes. (#3945)
* Rename `rb_scheduler` to `rb_fiber_scheduler`. * Use public interface if available. * Use `rb_check_funcall` where possible. * Don't use `unblock` unless the fiber was non-blocking.
Notes
Notes: Merged-By: ioquatix <samuel@codeotaku.com>
Diffstat (limited to 'inits.c')
-rw-r--r--inits.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/inits.c b/inits.c
index d2c99ed495..185f14b820 100644
--- a/inits.c
+++ b/inits.c
@@ -65,7 +65,7 @@ rb_call_inits(void)
CALL(VM);
CALL(ISeq);
CALL(Thread);
- CALL(Scheduler);
+ CALL(Fiber_Scheduler);
CALL(process);
CALL(Cont);
CALL(Rational);