Skip to content

Commit 025cfde

Browse files
committed
* eval_thread.c, common.mk: remove eval_thread.c.
* yarvcore.c: rename cYarvThread to rb_cThread. * gc.c: remove YARV_* prefix. * gc.h: add an include guard and prototype of rb_gc_set_stack_end(). * inits.c: fix to ANSI prototype style and reorder Init_*(). * io.c (pipe_finalize): TODO: comment out last_status. * process.c, yarvcore.h: fix to use yarv_vm_t#last_status instead of rb_last_status and make last_status_get() to access $?. * yarvcore.c (vm_mark): mark yarv_vm_t#last_status. * ruby.h: add declarations of rb_cISeq and rb_cVM. * thread.c: move eval_thread.c codes to thread.c and remove yarv_* function prefix. * thread.c (thread_start_func_2): use yarv_thread_t#first_func if it is not null. * vm.c: fix copyright year. * yarvcore.c (Init_vm): rename to Init_VM(). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11631 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
1 parent 72f2d2a commit 025cfde

File tree

13 files changed

+576
-877
lines changed

13 files changed

+576
-877
lines changed

ChangeLog

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,34 @@
1+
Mon Feb 5 21:06:50 2007 Koichi Sasada <ko1@atdot.net>
2+
3+
* eval_thread.c, common.mk: remove eval_thread.c.
4+
5+
* yarvcore.c: rename cYarvThread to rb_cThread.
6+
7+
* gc.c: remove YARV_* prefix.
8+
9+
* gc.h: add an include guard and prototype of rb_gc_set_stack_end().
10+
11+
* inits.c: fix to ANSI prototype style and reorder Init_*().
12+
13+
* io.c (pipe_finalize): TODO: comment out last_status.
14+
15+
* process.c, yarvcore.h: fix to use yarv_vm_t#last_status instead of
16+
rb_last_status and make last_status_get() to access $?.
17+
18+
* yarvcore.c (vm_mark): mark yarv_vm_t#last_status.
19+
20+
* ruby.h: add declarations of rb_cISeq and rb_cVM.
21+
22+
* thread.c: move eval_thread.c codes to thread.c and remove yarv_*
23+
function prefix.
24+
25+
* thread.c (thread_start_func_2): use yarv_thread_t#first_func if
26+
it is not null.
27+
28+
* vm.c: fix copyright year.
29+
30+
* yarvcore.c (Init_vm): rename to Init_VM().
31+
132
Mon Feb 5 04:09:48 2007 Yukihiro Matsumoto <matz@ruby-lang.org>
233

334
* eval.c (rb_frame_callee): check if prev_cfp can be accessible.

common.mk

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ OBJS = array.$(OBJEXT) \
3232
eval.$(OBJEXT) \
3333
eval_load.$(OBJEXT) \
3434
proc.$(OBJEXT) \
35-
eval_thread.$(OBJEXT) \
3635
file.$(OBJEXT) \
3736
gc.$(OBJEXT) \
3837
hash.$(OBJEXT) \
@@ -403,11 +402,6 @@ eval_load.$(OBJEXT): {$(VPATH)}eval_load.c {$(VPATH)}eval_intern.h \
403402
{$(VPATH)}defines.h {$(VPATH)}intern.h {$(VPATH)}missing.h \
404403
{$(VPATH)}node.h {$(VPATH)}util.h {$(VPATH)}yarvcore.h \
405404
{$(VPATH)}rubysig.h {$(VPATH)}st.h {$(VPATH)}dln.h {$(VPATH)}yarv.h
406-
eval_thread.$(OBJEXT): {$(VPATH)}eval_thread.c {$(VPATH)}eval_intern.h \
407-
{$(VPATH)}ruby.h config.h {$(VPATH)}yarvcore.h \
408-
{$(VPATH)}defines.h {$(VPATH)}intern.h {$(VPATH)}missing.h \
409-
{$(VPATH)}node.h {$(VPATH)}util.h \
410-
{$(VPATH)}rubysig.h {$(VPATH)}st.h {$(VPATH)}dln.h {$(VPATH)}yarv.h
411405
proc.$(OBJEXT): {$(VPATH)}proc.c {$(VPATH)}eval_intern.h \
412406
{$(VPATH)}ruby.h config.h {$(VPATH)}yarvcore.h \
413407
{$(VPATH)}defines.h {$(VPATH)}intern.h {$(VPATH)}missing.h \

0 commit comments

Comments
 (0)