summaryrefslogtreecommitdiff
path: root/thread.c
AgeCommit message (Expand)Author
2021-10-03Using NIL_P macro instead of `== Qnil`S.H
2021-10-03Remove extraneous conversion to float [Bug #18236]Nobuyoshi Nakada
2021-10-03Cast to void pointer to suppress -Wformat-pedantic in RUBY_DEBUG_LOGNobuyoshi Nakada
2021-09-28Move some function declaration to internal/io.hS-H-GAMELINKS
2021-09-15Refactor and Using RBOOL macroS.H
2021-09-11Using RB_BIGNUM_TYPE_P macroS-H-GAMELINKS
2021-08-03Fix potential hang when joining threads.Samuel Williams
2021-08-02Using RBOOL macroS.H
2021-07-28Revert "Fix potential hang when joining threads."Yusuke Endoh
2021-07-27Predefine recursive key IDNobuyoshi Nakada
2021-07-27Fix potential hang when joining threads.Samuel Williams
2021-07-25Distinguish signal and timeout [Bug #16608]Nobuyoshi Nakada
2021-07-01Replace copy coroutine with pthread implementation.Samuel Williams
2021-06-29Prefer qualified names under ThreadNobuyoshi Nakada
2021-06-24Reduce repeated same codeNobuyoshi Nakada
2021-06-22Deprecate and rework old (fd) centric functions.Samuel Williams
2021-06-17Adjust styles [ci skip]Nobuyoshi Nakada
2021-06-14Wake up join list within thread EC context. (#4471)Samuel Williams
2021-06-03Suppress clobbered warnings on Travis-CI ppc64le-linuxNobuyoshi Nakada
2021-06-01Make `Thread#native_thread_id` not-implemented if unsupportedNobuyoshi Nakada
2021-05-26Add Thread#native_thread_id [Feature #17853]NARUSE, Yui
2021-04-08Document how to handle kill/terminate interrupts in Thread.handle_interruptJeremy Evans
2021-03-09Destroy VM-wise locks before freeing [Bug #15852]Nobuyoshi Nakada
2021-03-07Make Ractor stdio belonging to the Ractor [Bug #17672]Nobuyoshi Nakada
2021-02-10Don't document that Thread#group can return nilJeremy Evans
2021-02-09Expose scheduler as public interface & bug fixes. (#3945)Samuel Williams
2021-02-05unblock thread is only for main ractor.Koichi Sasada
2021-02-03only main thread can modify vm->ubf_async_safeKoichi Sasada
2021-01-19Replace "iff" with "if and only if"Gannon McGibbon
2020-12-24introduce rb_ractor_atfork()Koichi Sasada
2020-12-23Revert "need to clear blocking cnt at fork (child process)"Koichi Sasada
2020-12-23need to clear blocking cnt at fork (child process)Koichi Sasada
2020-12-22fix to use rb_ractor_id()Koichi Sasada
2020-12-14Introduce negative method cacheKoichi Sasada
2020-12-07fix Thread's interrupt and Ractor#take issueKoichi Sasada
2020-12-05Protoized old pre-ANSI K&R style definitionsNobuyoshi Nakada
2020-12-05Proposed method for dealing with stack locals which have non-local lifetime.Samuel Williams
2020-11-25show the error message before Ractor.yieldKoichi Sasada
2020-11-18fix public interfaceKoichi Sasada
2020-11-11Threads in a ractor will be killed with the ractorKoichi Sasada
2020-11-11introduce USE_VM_CLOCK for windows.Koichi Sasada
2020-11-07Rename to `Fiber#set_scheduler`.Samuel Williams
2020-10-30sync vm->waiting_fds correctly.Koichi Sasada
2020-10-28Add Thread.ignore_deadlock accessorJeremy Evans
2020-10-21Don't redefine #rb_intern over and over againStefan Stùˆben
2020-10-10Add Ractor#receive and Ractor.receive and use it in all placesBenoit Daloze
2020-10-01Don't use `th->scheduler` directly because it's not always valid to do so.Samuel Williams
2020-10-01rb_thread_scheduler is no longer usedNobuyoshi Nakada
2020-10-01Remove `Thread.scheduler` from public interface.Samuel Williams
2020-09-21Make Thread#join always convert its argument, as before 70f08f1eedBenoit Daloze