mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* eval.c (rb_longjmp), include/ruby/intern.h (ruby_cleanup): fixed
prototypes. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@22701 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
d6802f03b8
commit
9fb56049eb
3 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
Mon Mar 2 10:29:17 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* eval.c (rb_longjmp), include/ruby/intern.h (ruby_cleanup): fixed
|
||||
prototypes.
|
||||
|
||||
Mon Mar 2 00:56:45 2009 Masatoshi SEKI <m_seki@mva.biglobe.ne.jp>
|
||||
|
||||
* lib/drb/observer.rb: The module oberservable uses now a hash to
|
||||
|
|
2
eval.c
2
eval.c
|
@ -329,7 +329,7 @@ rb_frozen_class_p(VALUE klass)
|
|||
}
|
||||
}
|
||||
|
||||
NORETURN(static void rb_longjmp(int, VALUE));
|
||||
NORETURN(static void rb_longjmp(int, volatile VALUE));
|
||||
|
||||
static void
|
||||
rb_longjmp(int tag, volatile VALUE mesg)
|
||||
|
|
|
@ -309,7 +309,7 @@ void rb_exec_end_proc(void);
|
|||
void Init_jump(void);
|
||||
void ruby_finalize(void);
|
||||
NORETURN(void ruby_stop(int));
|
||||
int ruby_cleanup(int);
|
||||
int ruby_cleanup(volatile int);
|
||||
void rb_gc_mark_threads(void);
|
||||
void rb_thread_schedule(void);
|
||||
void rb_thread_wait_fd(int);
|
||||
|
|
Loading…
Reference in a new issue