mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* include/ruby/intern.h (rb_proc_exec_n): deprecated.
(rb_exec): ditto. (rb_exec_err): ditto. (rb_fork): ditto. (rb_fork_err): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36035 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
05a98ce736
commit
a903db9c23
2 changed files with 13 additions and 5 deletions
|
@ -1,3 +1,11 @@
|
|||
Mon Jun 11 22:15:44 2012 Tanaka Akira <akr@fsij.org>
|
||||
|
||||
* include/ruby/intern.h (rb_proc_exec_n): deprecated.
|
||||
(rb_exec): ditto.
|
||||
(rb_exec_err): ditto.
|
||||
(rb_fork): ditto.
|
||||
(rb_fork_err): ditto.
|
||||
|
||||
Mon Jun 11 18:49:52 2012 NARUSE, Yui <naruse@ruby-lang.org>
|
||||
|
||||
* configure.in: on checking libexecinfo, don't specify /use/local.
|
||||
|
|
|
@ -607,17 +607,17 @@ struct rb_exec_arg {
|
|||
VALUE envp_buf;
|
||||
VALUE dup2_tmpbuf;
|
||||
};
|
||||
int rb_proc_exec_n(int, VALUE*, const char*);
|
||||
DEPRECATED(int rb_proc_exec_n(int, VALUE*, const char*));
|
||||
int rb_proc_exec(const char*);
|
||||
VALUE rb_exec_arg_init(int argc, VALUE *argv, int accept_shell, struct rb_exec_arg *e);
|
||||
int rb_exec_arg_addopt(struct rb_exec_arg *e, VALUE key, VALUE val);
|
||||
void rb_exec_arg_fixup(struct rb_exec_arg *e);
|
||||
int rb_run_exec_options(const struct rb_exec_arg *e, struct rb_exec_arg *s);
|
||||
int rb_run_exec_options_err(const struct rb_exec_arg *e, struct rb_exec_arg *s, char*, size_t);
|
||||
int rb_exec(const struct rb_exec_arg*);
|
||||
int rb_exec_err(const struct rb_exec_arg*, char*, size_t);
|
||||
rb_pid_t rb_fork(int*, int (*)(void*), void*, VALUE);
|
||||
rb_pid_t rb_fork_err(int*, int (*)(void*, char*, size_t), void*, VALUE, char*, size_t);
|
||||
DEPRECATED(int rb_exec(const struct rb_exec_arg*));
|
||||
DEPRECATED(int rb_exec_err(const struct rb_exec_arg*, char*, size_t));
|
||||
DEPRECATED(rb_pid_t rb_fork(int*, int (*)(void*), void*, VALUE));
|
||||
DEPRECATED(rb_pid_t rb_fork_err(int*, int (*)(void*, char*, size_t), void*, VALUE, char*, size_t));
|
||||
VALUE rb_f_exec(int,VALUE*);
|
||||
rb_pid_t rb_waitpid(rb_pid_t pid, int *status, int flags);
|
||||
void rb_syswait(rb_pid_t pid);
|
||||
|
|
Loading…
Reference in a new issue