| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | * thread.c (rb_fd_copy): Change function argument. Now | kosaki | 2011-04-30 | 1 | -4/+5 |
* | * thread.c (do_select): remove useless ifdef. time calculation | kosaki | 2011-04-30 | 1 | -5/+2 |
* | fix indentation | kosaki | 2011-04-29 | 1 | -13/+13 |
* | * thread.c (lock_func): small cleanup. | kosaki | 2011-04-29 | 1 | -1/+6 |
* | * thread.c (rb_mutex_lock, lock_func): Avoid busy loop and | kosaki | 2011-04-29 | 1 | -17/+43 |
* | * thread.c (thread_fd_close_i): IOError exception should be assigned | nagachika | 2011-04-13 | 1 | -1/+1 |
* | * thread.c (exec_recursive): prevent temporary objects from GC. | nobu | 2011-02-20 | 1 | -5/+6 |
* | * thread.c (rb_thread_io_blocking_region): reset th->waiting_fd | nagachika | 2011-02-14 | 1 | -0/+1 |
* | * thread.c (rb_thread_io_blocking_region): new function to run | nobu | 2011-02-12 | 1 | -1/+51 |
* | * thread.c (thread_start_func_2): check deadlock condition before | nagachika | 2011-01-31 | 1 | -2/+3 |
* | * thread.c: parenthesize macro arguments. | akr | 2011-01-08 | 1 | -9/+9 |
* | * thread.c (rb_thread_atfork): Add small comment why we need | kosaki | 2010-12-25 | 1 | -0/+2 |
* | * thread.c (thread_cleanup_func): Moved interrupted_lock | kosaki | 2010-12-20 | 1 | -0/+1 |
* | * thread.c (thread_cleanup_func): Don't touch native threading | kosaki | 2010-12-20 | 1 | -3/+12 |
* | * thread.c, vm_core.h: make gvl_acquire/release/init/destruct | ko1 | 2010-11-27 | 1 | -14/+21 |
* | * configure.in (RUBY_CHECK_PRINTF_PREFIX): check for printf format | nobu | 2010-10-12 | 1 | -1/+1 |
* | * compile.c (iseq_build_body), error.c (set_syserr, get_syserr), | nobu | 2010-10-12 | 1 | -2/+2 |
* | * vm_core.h (rb_signal_buff_size, rb_signal_exec): moved | nobu | 2010-10-09 | 1 | -5/+0 |
* | * thread.c (thread_reset_event_flags, exec_event_hooks): ignore | nobu | 2010-10-09 | 1 | -17/+102 |
* | * thread.c (rb_threadptr_exec_event_hooks): suppress each event | nobu | 2010-10-09 | 1 | -24/+65 |
* | * thread.c (rb_threadptr_remove_event_hook): fix typo. | nobu | 2010-10-08 | 1 | -4/+4 |
* | * enc/unicode.c (onigenc_unicode_property_name_to_ctype): | naruse | 2010-10-03 | 1 | -1/+0 |
* | * thread.c (ruby_suppress_tracing): restore the state and invoke | nobu | 2010-09-01 | 1 | -0/+4 |
* | * thread.c (rb_gc_mark_threads): deprecated. | nobu | 2010-08-14 | 1 | -1/+1 |
* | * include/ruby/ruby.h (rb_data_type_t): restructured. [ruby-dev:41862] | nobu | 2010-07-18 | 1 | -3/+3 |
* | * thread.c (rb_thread_wakeup_alive): split from rb_thread_wakeup. | nobu | 2010-07-17 | 1 | -1/+10 |
* | * thread.c (rb_fd_resize, rb_fd_copy): avoid NULL dereference upon | mame | 2010-06-28 | 1 | -2/+2 |
* | * thread.c (Init_Thread): no need to suppress warning for | nobu | 2010-06-07 | 1 | -1/+0 |
* | * vm.c (Init_BareVM): call Init_native_thread here. | akr | 2010-06-05 | 1 | -1/+0 |
* | * removed trailing spaces. | nobu | 2010-05-29 | 1 | -1/+1 |
* | * thread.c (RB_GC_SAVE_MACHINE_CONTEXT), gc.c (ruby_gc_stress_start): | tarui | 2010-05-29 | 1 | -3/+0 |
* | * thread.c (RB_GC_SAVE_MACHINE_CONTEXT): start GC | tarui | 2010-05-29 | 1 | -0/+3 |
* | * thread.c (blocking_region_begin): avoid RUBY_VM_CHECK_INTS() | kosaki | 2010-05-28 | 1 | -1/+1 |
* | * thread.c (subtract_tv): if the rest is zero, should finish waiting | usa | 2010-05-20 | 1 | -1/+4 |
* | * array.c: Documentation: change => in call-seq to ->. | marcandre | 2010-05-17 | 1 | -51/+51 |
* | * vm_core.c (rb_thread_struct): add a field for sigaltstack. | mame | 2010-05-13 | 1 | -0/+5 |
* | * thread.c (rb_thread_aset): fixed argument type. | nobu | 2010-05-08 | 1 | -1/+1 |
* | * error.c: RDoc for subclasses of Exception. [ruby-core:28394] | marcandre | 2010-05-08 | 1 | -0/+14 |
* | * thread. (rb_thread_terminate_all): revert r24591 which caused SEGV | mame | 2010-04-28 | 1 | -7/+4 |
* | * thread.c (timer_thread_function): unused variable. | nobu | 2010-04-28 | 1 | -1/+0 |
* | * eval.c (ruby_cleanup): before cleanup, check signal buffer and run | mame | 2010-04-27 | 1 | -9/+17 |
* | * thread.c (rb_thread_blocking_region, rb_thread_blocking_region_end): | mame | 2010-04-19 | 1 | -0/+5 |
* | * thread.c (rb_thread_priority, rb_thread_priority_set): fix rdoc. | mame | 2010-04-15 | 1 | -3/+10 |
* | * vm_core.h: Introduce UNINITIALIZED_VAR() macro. | kosaki | 2010-04-06 | 1 | -11/+6 |
* | * thread.c (thread_reset_event_flags): set flags to thread. | wanabe | 2010-03-25 | 1 | -0/+1 |
* | * thread.c (thread_create_core): let new thread inherit RUBY_EVENT_VM | mame | 2010-03-24 | 1 | -1/+9 |
* | * thread.c (do_select): wrong conditions. [ruby-core:27753] | usa | 2010-01-25 | 1 | -3/+3 |
* | * thread.c (thread_start_func_2): unlock all locking mutexes | nobu | 2010-01-23 | 1 | -7/+26 |
* | removes the dtrace support. reverts r26239, r26238 and r26235. | yugui | 2010-01-05 | 1 | -12/+0 |
* | * gc.c: added UNLIKELY to probes for optimization. | yugui | 2010-01-04 | 1 | -7/+7 |