aboutsummaryrefslogtreecommitdiffstats
path: root/cont.c
Commit message (Expand)AuthorAgeFilesLines
...
* rb_ensure now free from ANYARGS卜部昌平2019-08-271-7/+9
* cont.c: remove unused STACK_GROW_DIR_DETECTIONYusuke Endoh2019-08-191-2/+0
* Use more different arguments in Fiber.yield documentation to make it clear (#...Iain Barnett2019-08-171-3/+3
* Rename rb_gc_mark_no_pin -> rb_gc_mark_movableAaron Patterson2019-08-121-3/+3
* Fix a typo [ci skip]Kazuhiro NISHIYAMA2019-08-131-1/+1
* Fix unused variableKazuhiro NISHIYAMA2019-07-291-3/+3
* Use PRIuSIZE instead of "%zu"Nobuyoshi Nakada2019-07-251-7/+10
* Add documentation to `fiber_pool_allocate_memory`.Samuel Williams2019-07-191-0/+7
* Fix 32-bit build and typo.Samuel Williams2019-07-191-2/+2
* Ensure that madvise does not clobber vacancy data.Samuel Williams2019-07-191-5/+19
* Better usage of `rb_ec_clear_vm_stack` to maintain invariants.Samuel Williams2019-07-191-6/+7
* Improve ec assertions.Samuel Williams2019-07-191-8/+0
* initialize only Fiber's cfp.Koichi Sasada2019-07-191-0/+1
* Revert "Ensure cfp is initialized to NULL."Samuel Williams2019-07-191-6/+0
* Ensure cfp is initialized to NULL.Samuel Williams2019-07-191-0/+6
* Remove `rb_vm_push_frame` as it is no longer used.Samuel Williams2019-07-191-12/+0
* Adjust styles and indentsNobuyoshi Nakada2019-07-191-21/+33
* check saved_ec.cfpKoichi Sasada2019-07-181-1/+3
* Ensure we don't have dangling cfp.Samuel Williams2019-07-191-0/+1
* * remove trailing spaces.git2019-07-181-1/+1
* Improve `fiber_pool_expand` allocation strategy.Samuel Williams2019-07-181-23/+47
* Add experimental `RUBY_SHARED_FIBER_POOL_FREE_STACKS` to control madvise.Samuel Williams2019-07-181-0/+5
* Make fiber_pool more conservative on platforms with limited address space.Samuel Williams2019-07-181-12/+12
* Add `struct fiber_pool {int free_stacks;}` to control usage of madvise.Samuel Williams2019-07-181-1/+10
* Add FIBER_POOL_ALLOCATION_FREE to control allocation/free strategy.Samuel Williams2019-07-181-8/+43
* Limit expansion of fiber pool on 32-bit platforms.Samuel Williams2019-07-181-46/+150
* Enable `madvise` to release stack space back to OS.Samuel Williams2019-07-181-98/+142
* Improve build process and coroutine implementation selection.Samuel Williams2019-07-181-6/+1
* Stack copying implementation of coroutines.Samuel Williams2019-07-181-2/+23
* Implement fiber pool for reduced fiber allocation overhead.Samuel Williams2019-07-181-192/+508
* Make FIBER_USE_NATIVE the default and reformat code.Samuel Williams2019-07-181-518/+252
* * expand tabs.git2019-07-081-35/+35
* Fix indentNobuyoshi Nakada2019-07-081-4/+4
* Renamed fib to fiberNobuyoshi Nakada2019-07-081-244/+244
* Use native coroutine implementation on OpenBSD-amd64Jeremy Evans2019-06-261-1/+0
* Add `ucontext` coroutine implementation for generic fallback.Samuel Williams2019-06-261-4/+4
* * remove trailing spaces.git2019-06-241-1/+1
* Print warning if not using native coroutine.Samuel Williams2019-06-241-0/+2
* Transition root fiber into state FIBER_TERMINATED.Samuel Williams2019-06-201-0/+11
* Ensure that vm_stack is cleared in `thread_cleanup_func_before_exec`.Samuel Williams2019-06-201-9/+2
* Revert failed attempt at fixing invalid usage of vm_stack.Samuel Williams2019-06-201-2/+9
* Ensure `vm_stack` is cleared after fork.Samuel Williams2019-06-201-10/+2
* Set `cfp` to null (along with vm_stack) in `rb_fiber_close`.Samuel Williams2019-06-201-0/+1
* Adjust indentNobuyoshi Nakada2019-06-191-1/+1
* Remove IA64 support.Samuel Williams2019-06-191-92/+1
* Use shared implementation of `rb_ec_initialize_vm_stack`.Samuel Williams2019-06-191-13/+1
* Track how stack was allocated for `cont_free`.Samuel Williams2019-06-191-8/+21
* Better handling of root fiber.Samuel Williams2019-06-191-4/+3
* * expand tabs.git2019-06-121-3/+3
* Add compaction support for more types.Aaron Patterson2019-06-111-5/+37