зеркало из https://github.com/github/ruby.git
* process.c (pst_success_p): new method Process::Status#success?.
[ruby-dev:23385] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@6165 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
7ab8be45db
Коммит
b3db09df79
|
@ -1,3 +1,8 @@
|
|||
Thu Apr 15 19:53:08 2004 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* process.c (pst_success_p): new method Process::Status#success?.
|
||||
[ruby-dev:23385]
|
||||
|
||||
Thu Apr 15 19:26:54 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp>
|
||||
|
||||
* dir.c (rb_push_glob): Dir.glob() should return nil if block is given.
|
||||
|
|
22
process.c
22
process.c
|
@ -511,7 +511,27 @@ pst_wexitstatus(st)
|
|||
|
||||
/*
|
||||
* call-seq:
|
||||
* stat.coredump => true or false
|
||||
* stat.success? => true, false or nil
|
||||
*
|
||||
* Returns +true+ if _stat_ is successful, +false+ if not.
|
||||
* Returns +nil+ if <code>exited?</code> is not +true+.
|
||||
*/
|
||||
|
||||
static VALUE
|
||||
pst_success_p(st)
|
||||
VALUE st;
|
||||
{
|
||||
int status = NUM2INT(st);
|
||||
|
||||
if (!WIFEXITED(status))
|
||||
return Qnil;
|
||||
return WEXITSTATUS(status) == EXIT_SUCCESS ? Qtrue : Qfalse;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* call-seq:
|
||||
* stat.coredump? => true or false
|
||||
*
|
||||
* Returns +true+ if _stat_ generated a coredump
|
||||
* when it terminated. Not available on all platforms.
|
||||
|
|
Загрузка…
Ссылка в новой задаче