mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
thread.c: remove deprecated
* thread.c (rb_gc_mark_threads): remove deprecated function. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36461 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
b72fc09537
commit
5e7fa03bc0
3 changed files with 4 additions and 7 deletions
|
@ -1,3 +1,7 @@
|
|||
Thu Jul 19 14:15:48 2012 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* thread.c (rb_gc_mark_threads): remove deprecated function.
|
||||
|
||||
Thu Jul 19 13:28:03 2012 NAKAMURA Usaku <usa@ruby-lang.org>
|
||||
|
||||
* test/net/http/test_http.rb (TestNetHTTPLocalBind#test_bind_to_local*):
|
||||
|
|
|
@ -387,7 +387,6 @@ VALUE rb_protect(VALUE (*)(VALUE), VALUE, int*);
|
|||
void rb_set_end_proc(void (*)(VALUE), VALUE);
|
||||
void rb_mark_end_proc(void);
|
||||
void rb_exec_end_proc(void);
|
||||
DEPRECATED(void rb_gc_mark_threads(void));
|
||||
void rb_thread_schedule(void);
|
||||
void rb_thread_wait_fd(int);
|
||||
int rb_thread_fd_writable(int);
|
||||
|
|
6
thread.c
6
thread.c
|
@ -1430,12 +1430,6 @@ rb_thread_execute_interrupts(VALUE thval)
|
|||
rb_threadptr_execute_interrupts_common(th);
|
||||
}
|
||||
|
||||
void
|
||||
rb_gc_mark_threads(void)
|
||||
{
|
||||
rb_bug("deprecated function rb_gc_mark_threads is called");
|
||||
}
|
||||
|
||||
/*****************************************************/
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in a new issue