mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* process.c: new method Process.exec; backported from 1.9. bug#19006
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@15976 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
59e126383c
commit
4d78d30daa
2 changed files with 5 additions and 0 deletions
|
@ -1,3 +1,7 @@
|
|||
Fri Apr 11 18:58:09 2008 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
|
||||
|
||||
* process.c: new method Process.exec; backported from 1.9. bug#19006
|
||||
|
||||
Fri Apr 11 12:43:56 2008 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp>
|
||||
|
||||
* ext/tk/lib/tkextlib/tile.rb, ext/tk/lib/tkextlib/tile/style.rb,
|
||||
|
|
|
@ -3573,6 +3573,7 @@ Init_process()
|
|||
#endif
|
||||
#endif
|
||||
|
||||
rb_define_singleton_method(rb_mProcess, "exec", rb_f_exec, -1);
|
||||
rb_define_singleton_method(rb_mProcess, "fork", rb_f_fork, 0);
|
||||
rb_define_singleton_method(rb_mProcess, "exit!", rb_f_exit_bang, -1);
|
||||
rb_define_singleton_method(rb_mProcess, "exit", rb_f_exit, -1); /* in eval.c */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue