stopped?()
public
Returns true if this process is stopped. This is only returned if
the corresponding wait call had the WUNTRACED flag set.
Show source
static VALUE
pst_wifstopped(VALUE st)
{
int status = PST2INT(st);
if (WIFSTOPPED(status))
return Qtrue;
else
return Qfalse;
}