index
:
delta/ruby.git
5a1dfb04bc2
KEIJU
KOSAKO
RUBY
SER
SHIGEO
SPCOLTRIN
baserock/GENIVI/G-1.2
baserock/liw/sam/chef
baserock/morph/ruby_1_8_7
baserock/morph/ruby_1_9_3
baserock/ps/proto-web-system
baserock/ruby_1_9_3
baserock/ruby_2_0_0
baserock/ruby_2_1
baserock/v1_9_3_194-bootstrap
bundler
c65f10304f
copy_file_range_bug
dependabot/bundler/spec/mspec/rake-12.3.3
half-baked-1.9
master
matzruby
maximecb-patch-1
maximecb-patch-2
mvm
new_gc
revert-2779-news-for-module-name
rexml_adds_tests
ricsin
ruby_1_3
ruby_1_4
ruby_1_6
ruby_1_8
ruby_1_8_5
ruby_1_8_6
ruby_1_8_7
ruby_1_9_1
ruby_1_9_2
ruby_1_9_3
ruby_2_0_0
ruby_2_1
ruby_2_2
ruby_2_3
ruby_2_4
ruby_2_5
ruby_2_6
ruby_2_7
ruby_3_0
ruby_3_1
ruby_3_2
ruby_m17n
scheduler-process-wait
testunit
thread_inspect
trunk
unlabeled-1.1.1
unlabeled-1.39.2
v1_0r
v1_1dev
v1_1r
win32-unicode-test
yuki24-patch-1
github.com: ruby/ruby.git
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
cont.c
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
Implement fiber pool for reduced fiber allocation overhead.
Samuel Williams
2019-07-18
1
-192
/
+508
*
Make FIBER_USE_NATIVE the default and reformat code.
Samuel Williams
2019-07-18
1
-518
/
+252
*
* expand tabs.
git
2019-07-08
1
-35
/
+35
*
Fix indent
Nobuyoshi Nakada
2019-07-08
1
-4
/
+4
*
Renamed fib to fiber
Nobuyoshi Nakada
2019-07-08
1
-244
/
+244
*
Use native coroutine implementation on OpenBSD-amd64
Jeremy Evans
2019-06-26
1
-1
/
+0
*
Add `ucontext` coroutine implementation for generic fallback.
Samuel Williams
2019-06-26
1
-4
/
+4
*
* remove trailing spaces.
git
2019-06-24
1
-1
/
+1
*
Print warning if not using native coroutine.
Samuel Williams
2019-06-24
1
-0
/
+2
*
Transition root fiber into state FIBER_TERMINATED.
Samuel Williams
2019-06-20
1
-0
/
+11
*
Ensure that vm_stack is cleared in `thread_cleanup_func_before_exec`.
Samuel Williams
2019-06-20
1
-9
/
+2
*
Revert failed attempt at fixing invalid usage of vm_stack.
Samuel Williams
2019-06-20
1
-2
/
+9
*
Ensure `vm_stack` is cleared after fork.
Samuel Williams
2019-06-20
1
-10
/
+2
*
Set `cfp` to null (along with vm_stack) in `rb_fiber_close`.
Samuel Williams
2019-06-20
1
-0
/
+1
*
Adjust indent
Nobuyoshi Nakada
2019-06-19
1
-1
/
+1
*
Remove IA64 support.
Samuel Williams
2019-06-19
1
-92
/
+1
*
Use shared implementation of `rb_ec_initialize_vm_stack`.
Samuel Williams
2019-06-19
1
-13
/
+1
*
Track how stack was allocated for `cont_free`.
Samuel Williams
2019-06-19
1
-8
/
+21
*
Better handling of root fiber.
Samuel Williams
2019-06-19
1
-4
/
+3
*
* expand tabs.
git
2019-06-12
1
-3
/
+3
*
Add compaction support for more types.
Aaron Patterson
2019-06-11
1
-5
/
+37
*
ia64: Don't clear register_stack_start
James Clarke
2019-04-27
1
-1
/
+0
*
[DOC] fix markups [ci skip]
nobu
2019-03-22
1
-25
/
+24
*
Fix styles [ci skip]
nobu
2019-01-09
1
-2
/
+4
*
Fix #endif annotation.
samuel
2018-12-28
1
-1
/
+1
*
Don't allow rb_fiber_resume to raise exception on unborn fiber.
samuel
2018-12-28
1
-0
/
+5
*
Implement Fiber#raise. Fixes #10344.
samuel
2018-12-28
1
-0
/
+29
*
Avoid GCing dead stack after switching away from a fiber
samuel
2018-12-01
1
-0
/
+1
*
Give up support for cross-callcc set_trace_func.
ko1
2018-11-26
1
-1
/
+4
*
Support targetting TracePoint [Feature #15289]
ko1
2018-11-26
1
-9
/
+0
*
Use VirtualAlloc/VirtualProtect/VirtualFree for windows stack allocation.
samuel
2018-11-22
1
-53
/
+63
*
Fix condition
nobu
2018-11-20
1
-2
/
+2
*
Make fiber_entry static
nobu
2018-11-20
1
-1
/
+2
*
Fix windows builds.
samuel
2018-11-20
1
-0
/
+2
*
Expose stack functions to coroutine and non-windows implementations.
samuel
2018-11-20
1
-12
/
+16
*
Fix exposure of stack allocations.
samuel
2018-11-20
1
-2
/
+3
*
Use malloc/free for windows stack allocation.
samuel
2018-11-20
1
-11
/
+20
*
Remove trailing whitespace.
samuel
2018-11-20
1
-2
/
+2
*
Restore native non-coroutine code path.
samuel
2018-11-20
1
-2
/
+11
*
It cannot be const because it is being passed to destructive operation (destr...
samuel
2018-11-20
1
-1
/
+1
*
Better support for amd64 platforms
samuel
2018-11-20
1
-3
/
+3
*
Native implementation of coroutines to improve performance of fibers
samuel
2018-11-20
1
-16
/
+63
*
Prefix rb_ec_set_vm_stack
nobu
2018-11-16
1
-4
/
+4
*
suppress integer overflow warnings
shyouhei
2018-11-13
1
-6
/
+6
*
cont.c: direct use of rb_thread_t
shyouhei
2018-11-06
1
-3
/
+1
*
fiber: fix crash on GC after forking
normal
2018-09-12
1
-16
/
+13
*
cont.c (fiber_memsize): do not rely on ROOT_FIBER_CONTEXT
normal
2018-09-12
1
-5
/
+8
*
cont.c (ec_set_vm_stack): avoid needless casting
normal
2018-09-12
1
-2
/
+2
*
share VM stack between threads and fibers if identical in size
normal
2018-09-12
1
-10
/
+20
*
cont.c (rb_fiber_atfork): th->root_fiber may not exist
normal
2018-08-30
1
-4
/
+6
[prev]
[next]