aboutsummaryrefslogtreecommitdiffstats
path: root/gc.c
Commit message (Expand)AuthorAgeFilesLines
* * struct.c (rb_struct_s_def): Struct::new executes block withmatz2004-03-101-3/+3
* * gc.c (obj_free), io.c (rb_io_fptr_finalize), rubyio.h (OpenFile):nobu2004-02-251-1/+0
* * parse.y (opt_rescue): use NODE_ERRINFO() instead ofmatz2004-01-221-0/+1
* * parse.y (newline_node): do not use NODE_NEWLINE node anymore,matz2004-01-211-2/+1
* Add RDoc commentsdave2003-12-221-0/+150
* dln.c: remove last second typo.matz2003-12-201-0/+10
* * eval.c (thread_timer): use timer by sub-thread and nanosleep.matz2003-12-131-5/+2
* * io.c (read_all): should return given string even if data read ismatz2003-12-101-2/+0
* * gc.c (gc_mark): explicitly check mark recursion levels, insteadmatz2003-11-281-40/+69
* * eval.c, gc.c: FreeBSD/ia64 currently does not have a way for aknu2003-11-271-0/+8
* * gc.c (Init_stack): stack region is far smaller than usual ifmatz2003-11-221-0/+3
* * configure.in: always check existence of the pthread librarynagai2003-11-201-0/+5
* * gc.c (gc_sweep): loosen page free condition to avoid add_heap()matz2003-10-201-3/+5
* * parse.y (stmt): rhs of multiple assignment should not bematz2003-10-061-0/+1
* * gc.c (Init_stack): the type of space is changed to unsigned inteban2003-10-041-1/+1
* * gc.c (heaps): manage slots and limits together. [ruby-dev:21453]nobu2003-10-011-26/+32
* * enum.c (inject_i): use rb_yield_values.matz2003-08-221-2/+2
* * gc.c (id2ref): recycle check should be done by klass == 0.matz2003-08-141-1/+1
* * gc.c (rb_data_object_alloc): check type of 1st argument.usa2003-08-141-0/+1
* * eval.c (rb_call0): update ruby_class as well as ruby_cref.matz2003-08-061-2/+0
* * gc.c: FreeBSD/ia64's mcontext_t is a bit different from that ofknu2003-08-061-0/+4
* * gc.c: add "#pragma weak" for __libc_ia64_register_backing_store_base.matz2003-08-021-0/+1
* * gc.c (rb_gc_mark_locations): no need to swap arguments.nobu2003-08-011-11/+6
* * gc.c (rb_gc): typo.matz2003-08-011-1/+1
* * ext/syck/rubyext.c (syck_emitter_write_m): forgot to declarematz2003-08-011-3/+22
* * gc.c (Init_stack): wrong magic number.matz2003-07-311-1/+1
* * gc.c (Init_stack): IA64 requires STACK_LEVEL_MAX to be less thanmatz2003-07-311-0/+8
* * ext/socket/socket.c (tcp_s_gethostbyname): was usingmatz2003-07-251-2/+2
* * gcc -Wall clean-up.matz2003-07-241-9/+0
* * gc.c (run_final): backout unnecessary modifies.matz2003-07-241-10/+3
* * eval.c (thgroup_add): no warning for terminated threads.matz2003-07-241-3/+9
* * eval.c (rb_clear_cache_by_class): check both klass and origin.matz2003-07-171-1/+0
* * eval.c (ruby_init): set ruby_running to true aftermatz2003-07-171-0/+1
* * eval.c (rb_call_super): k->super maybe NULL if klass is Kernel.matz2003-07-071-0/+1
* * configure.in (rb_cv_stack_grow_dir): check stack growing direction.nobu2003-06-281-24/+37
* * eval.c (proc_alloc): re-unification of Block and Proc. Blockmatz2003-06-161-1/+1
* * parse.y (value_expr0): class and module statements should not bematz2003-06-071-4/+4
* * gc.c (define_final): eliminate rb_f_lambda() call.matz2003-06-061-20/+20
* * gc.c (run_final): use rb_thread_critical instead of DEFER_INTS.matz2003-05-221-3/+4
* * error.c (syserr_initialize): prohibit specifying errno formatz2003-05-211-0/+2
* * gc.c (rb_gc): check odd alignment stack on m68k machines.matz2003-05-081-1/+1
* * gc.c: STACK_LEVEL_MAX=65535 on mswince.uema22003-04-251-1/+1
* * gc.c (rb_gc): use rb_gc_mark_maybe() to mark registered Cmatz2003-04-211-1/+1
* * gc.c (rb_gc_mark_children): introduce this function again; thismatz2003-04-091-25/+35
* * bignum.c (BIGZEROP): macro to determine if x is a bignum zero.matz2003-04-091-17/+27
* * eval.c (avalue_splat): new function to do unary * (splat)matz2003-03-261-0/+3
* * gc.c (rb_gc_call_finalizer_at_exit): use free() if dfree is -1.nobu2003-03-231-1/+6
* * string.c (str_new): need no MEMZERO().matz2003-02-271-2/+25
* * gc.c (rb_gc_mark): inline rb_gc_mark_children().matz2003-02-211-50/+41
* * parse.y (clhs): allow "Foo::Bar = x".matz2003-02-201-1/+1