| Commit message (Expand) | Author | Age | Files | Lines |
* | * gc.c: fix typos in documentation. | eregon | 2012-10-20 | 1 | -3/+3 |
* | * include/ruby/ruby.h: add C APIs. | nari | 2012-10-20 | 1 | -2/+19 |
* | * eval.c, gc.c, iseq.c, node.h, vm_insnhelper.c, vm_insnhelper.h, | shugo | 2012-10-08 | 1 | -1/+1 |
* | gc.c: use markable_object_p | nobu | 2012-10-06 | 1 | -2/+1 |
* | fix comments | nari | 2012-10-05 | 1 | -3/+3 |
* | revert r37091 | nari | 2012-10-05 | 1 | -3/+7 |
* | * ext/objspace/objspace.c: add ObjectSpace#reachable_objects_from. | ko1 | 2012-10-05 | 1 | -29/+111 |
* | * gc.c (chain_finalized_object): remove to check a mark flag and | nari | 2012-10-05 | 1 | -7/+3 |
* | * gc.c (init_heap): call init_mark_stack before to allocate | nari | 2012-10-04 | 1 | -1/+2 |
* | * gc.c (rb_objspace_call_finalizer): call gc_mark_stacked_objects | nari | 2012-10-04 | 1 | -3/+1 |
* | gc.c: self-referencing finalizers | nobu | 2012-10-04 | 1 | -6/+19 |
* | * gc.c: use enum for debugging. | nobu | 2012-10-04 | 1 | -53/+55 |
* | gc.c: unused function | nobu | 2012-10-03 | 1 | -2/+3 |
* | * gc.c: Use the non-recursive marking instead of recursion. The | nari | 2012-10-03 | 1 | -180/+257 |
* | * insns.def (opt_checkenv): remove unused instruction `opt_checkenv'. | ko1 | 2012-09-28 | 1 | -1/+0 |
* | * include/ruby/ruby.h: introduce flonum technique for | ko1 | 2012-08-23 | 1 | -2/+10 |
* | * gc.c (gc_malloc_allocated_size): RDoc does not process macros, so | drbrain | 2012-08-09 | 1 | -6/+4 |
* | * gc.c : if ENABLE_VM_OBJSPACE is 1, rest_sweep is not defined. | nari | 2012-08-05 | 1 | -3/+1 |
* | * gc.c: just move functions and so on. I don't touch any internal | nari | 2012-08-05 | 1 | -1827/+1853 |
* | * gc.c: use inline functions instead of macros, and close up | nari | 2012-08-04 | 1 | -176/+269 |
* | * gc.c (gc_mark_children): use gc_mark_ptr instead of marking | nari | 2012-08-04 | 1 | -5/+1 |
* | * eval.c (rb_mod_using): new method Module#using. [experimental] | shugo | 2012-08-02 | 1 | -0/+6 |
* | * gc.c: return true or false. Patch by Dirkjan Bussink. [Bug #6821] | nari | 2012-08-02 | 1 | -1/+1 |
* | * gc.c: remove unused initialization. | nari | 2012-07-28 | 1 | -1/+1 |
* | rb_thread_call_without_gvl | nobu | 2012-07-10 | 1 | -0/+1 |
* | * gc.c, atomic.h (ATOMIC_SIZE_*): moved from gc.c to atomic.h [ruby-dev:45909] | ngoto | 2012-07-04 | 1 | -50/+1 |
* | * gc.c (ATOMIC_SIZE_*): 64bit Windows support. | usa | 2012-07-04 | 1 | -5/+13 |
* | * gc.c (ATOMIC_SIZE_EXCHANGE): fix function name on Solaris [Bug #6689] | ngoto | 2012-07-03 | 1 | -1/+1 |
* | gc.c: atomic operations for malloc_params | nobu | 2012-07-03 | 1 | -10/+53 |
* | fix allocated_size | nobu | 2012-07-03 | 1 | -2/+5 |
* | gc.c: simplified | nobu | 2012-06-02 | 1 | -3/+3 |
* | adjust indent | nobu | 2012-05-31 | 1 | -1/+1 |
* | * gc.c (obj_free): doesn't free a method table if it doesn't | nari | 2012-05-28 | 1 | -1/+3 |
* | Imports Ruby's port to NativeClient (a.k.a NaCl). | yugui | 2012-05-17 | 1 | -0/+6 |
* | * gc.c (obj_free): show entire flags too. | nobu | 2012-04-13 | 1 | -2/+2 |
* | * gc.c (GET_HEAP_HEADER, NUM_IN_SLOT): parenthesise macro parameters. | nobu | 2012-04-12 | 1 | -2/+2 |
* | * st.c (st_update): pass pointer to key to the callback function. | nobu | 2012-03-29 | 1 | -2/+3 |
* | * st.c (st_update): add existing parameter to the callback function. | nobu | 2012-03-29 | 1 | -1/+2 |
* | fix condition for free | nobu | 2012-03-18 | 1 | -2/+3 |
* | * gc.c (aligned_malloc, aligned_free): added fallback implementations | yugui | 2012-03-18 | 1 | -2/+15 |
* | * gc.c (free_method_entry_i): method entry may be in | nobu | 2012-03-18 | 1 | -1/+3 |
* | Bug #5350 | nobu | 2012-03-13 | 1 | -8/+209 |
* | * gc.c : remove gc_clear_mark_on_sweep_slots() and use | nari | 2012-02-21 | 1 | -21/+5 |
* | revert r34691 and r34689 | nari | 2012-02-19 | 1 | -1/+4 |
* | * gc.c (gc_clear_mark_on_sweep_slots): remove a unused variable. | nari | 2012-02-19 | 1 | -2/+0 |
* | * gc.c (gc_clear_mark_on_sweep_slots): uses slot_sweep() for | nari | 2012-02-19 | 1 | -2/+1 |
* | * cont.c (rb_fiber_reset_root_local_storage): add a new function to | nagachika | 2012-02-15 | 1 | -1/+2 |
* | * gc.c (HEAP_BITMAP_LIMIT): HEAP_BITMAP_LIMIT is computed on the | nari | 2012-02-15 | 1 | -1/+1 |
* | * gc.c (CEILDIV): rename to a appropriate name. | nari | 2012-02-14 | 1 | -2/+2 |
* | * gc.c (assign_heap_slot): SEGV happens cause on 64-bit platform | nari | 2012-02-14 | 1 | -3/+1 |