* 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:
parent
7ab8be45db
commit
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>
|
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.
|
* 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:
|
* 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
|
* Returns +true+ if _stat_ generated a coredump
|
||||||
* when it terminated. Not available on all platforms.
|
* when it terminated. Not available on all platforms.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user