| Commit message (Expand) | Author | Age | Files | Lines |
* | * 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 |
* | * gc.c (HEAP_OBJ_LIMIT, HEAP_BITMAP_LIMIT): HEAP_OBJ_LIMIT used | nari | 2012-02-13 | 1 | -2/+3 |
* | * configure.in (HEAP_ALIGN_LOG): HEAP_ALIGN_LOG should be page | nari | 2012-01-31 | 1 | -1/+3 |
* | * gc.c (HEAP_ALIGN, HEAP_ALIGN_MASK): DRY, let compiler calculate | nobu | 2012-01-27 | 1 | -2/+2 |
* | * gc.c (aligned_malloc, aligned_free): covered missing defined | nobu | 2012-01-17 | 1 | -4/+4 |
* | * gc.c (ruby_mimmalloc): don't set allocated size to header. | nagachika | 2012-01-11 | 1 | -3/+6 |
* | * gc.c (HEAP_OBJ_LIMIT): suppress narrowing down warning from gcc 4.2. | nobu | 2012-01-10 | 1 | -1/+1 |
* | * gc.c: in fact, i686-linux doesn't need to define _XOPEN_SOURCE 600. | naruse | 2012-01-10 | 1 | -3/+0 |
* | * gc.c (ruby_mimmalloc): defined for objects need not rb_objspace, | naruse | 2012-01-10 | 1 | -0/+18 |
* | * gc.c (run_finalizer): clear rb_thread_t::errinfo when ignore | nagachika | 2012-01-09 | 1 | -0/+3 |
* | * gc.c : don't embed struct heaps_slot to a heap block because it | nari | 2012-01-09 | 1 | -13/+30 |
* | * gc.c: free_slots is changed Singly linked list. clear | nari | 2012-01-09 | 1 | -15/+7 |
* | * gc.c: i686-linux needs to define _XOPEN_SOURCE 600 for posix_memalign. | naruse | 2012-01-08 | 1 | -3/+5 |
* | * gc.c (rb_objspace_free): global_List is allocated with xmalloc. | naruse | 2012-01-08 | 1 | -1/+1 |
* | * gc.c : consider header bytes which are used by malloc. | nari | 2012-01-08 | 1 | -7/+8 |
* | * gc.c (aligned_free): support MinGW. Patch by Hiroshi Shirosaki. | nari | 2012-01-08 | 1 | -1/+3 |
* | * gc.c (slot_sweep): add a assertion instead of a debug print. | nari | 2012-01-08 | 1 | -3/+1 |
* | * gc.c: get rid of implicit narrowing conversion. | kosaki | 2012-01-07 | 1 | -1/+1 |
* | * configure.in: check posix_memalign(3) and menalign(3). | naruse | 2012-01-07 | 1 | -5/+8 |
* | * gc.c: use Bitmap Marking algorithm to avoid copy-on-write of | nari | 2012-01-07 | 1 | -110/+227 |
* | * node.h, node.c, parse.y: implement a parser part for keyword arguments. Thi... | mame | 2011-12-26 | 1 | -3/+5 |
* | * node.h, parse.y (new_args_gen), compile.c (iseq_set_arguments): use struct ... | mame | 2011-12-26 | 1 | -1/+17 |
* | * bignum.c (big_rshift), compile.c (validate_label, | nobu | 2011-12-05 | 1 | -0/+1 |
* | * gc.c (initial_params): static. it seems to be forgetten at r33501. | usa | 2011-11-28 | 1 | -1/+1 |
* | * gc.c (initial_params): pack in a struct. | nobu | 2011-10-21 | 1 | -4/+19 |
* | * gc.c (rb_gc_set_params): set parameters always. | nobu | 2011-10-21 | 1 | -7/+2 |
* | * gc.c (rb_gc_finalize_deferred, rb_objspace_call_finalizer): | nobu | 2011-10-13 | 1 | -2/+2 |
* | * class.c (class_alloc): allocate extra memory after containing | nobu | 2011-10-04 | 1 | -0/+1 |
* | * gc.c (rb_gc_set_params): ruby_verbose can be Qnil, so use RTEST. | naruse | 2011-10-04 | 1 | -3/+3 |
* | * gc.c (rb_gc_set_params): output GC parameter change messages only | nagachika | 2011-10-03 | 1 | -3/+8 |
* | * gc.c (add_heap_slots, init_heap): reset heaps_inc zero when | nagachika | 2011-10-01 | 1 | -1/+1 |
* | * gc.c (slot_sweep, rb_gc_finalize_deferred) | nobu | 2011-09-29 | 1 | -3/+11 |
* | * gc.c (is_id_value, is_live_object): extract from id2ref(). | nobu | 2011-09-29 | 1 | -4/+20 |
* | * gc.c (run_finalizer): use object instead of object id. | nobu | 2011-09-29 | 1 | -7/+9 |
* | * use RB_TYPE_P which is optimized for constant types, instead of | nobu | 2011-09-29 | 1 | -2/+2 |
* | suppress warnings. | nobu | 2011-09-25 | 1 | -1/+1 |
* | * gc.c (mark_entry, mark_key, mark_keyvalue): adjust callback | nobu | 2011-09-15 | 1 | -7/+7 |
* | * gc.c (GC_PROFILE_MORE_DETAIL, CALC_EXACT_MALLOC_SIZE): | ko1 | 2011-09-09 | 1 | -0/+5 |
* | * gc.c (Init_GC): defined GC::Profiler.raw_data. based on the | nari | 2011-09-08 | 1 | -0/+28 |
* | * gc.c (id2ref): objects which are unmarked but not in sweep_slots | nobu | 2011-09-08 | 1 | -5/+19 |
* | * gc.c (id2ref): unmarked object is already dead while lazy | nobu | 2011-09-07 | 1 | -1/+4 |
* | * variable.c (rb_const_set): show the previous definition | nobu | 2011-09-03 | 1 | -0/+1 |
* | * gc.c (gc_lazy_sweep): if sweep target slots are not found, we | nari | 2011-08-09 | 1 | -0/+7 |
* | Refix r32815. | naruse | 2011-08-02 | 1 | -2/+3 |
* | * gc.c (init_heap): allocate sigaltstack after heaps are allocated. | naruse | 2011-08-02 | 1 | -0/+8 |
* | * proc.c (struct METHOD), gc.c (gc_marks), vm_method.c | mame | 2011-07-25 | 1 | -0/+2 |
* | * gc.c: Improve documentation | drbrain | 2011-07-08 | 1 | -25/+52 |