Type:
Class

Process::Status encapsulates the information on the status of a running or terminated system process. The built-in variable $? is either nil or a Process::Status object.

fork { exit 99 }   #=> 26557
Process.wait       #=> 26557
$?.class           #=> Process::Status
$?.to_i            #=> 25344
$? >> 8            #=> 99
$?.stopped?        #=> false
$?.exited?         #=> true
$?.exitstatus      #=> 99

Posix systems record information on processes using a 16-bit integer. The lower bits record the process status (stopped, exited, signaled) and the upper bits possibly contain additional information (for example the program's return code in the case of exited processes). Pre Ruby 1.8, these bits were exposed directly to the Ruby program. Ruby now encapsulates these in a Process::Status object. To maximize compatibility, however, these objects retain a bit-oriented interface. In the descriptions that follow, when we talk about the integer value of stat, we're referring to this 16 bit value.

exited?

stat.exited? â true or false Instance Public methods Returns true

2015-04-28 17:39:23
termsig

stat.termsig â fixnum or nil Instance Public methods Returns the number of

2015-04-28 18:05:20
stopsig

stat.stopsig â fixnum or nil Instance Public methods Returns the number of

2015-04-28 17:58:47
success?

stat.success? â true, false or nil Instance Public methods Returns true

2015-04-28 18:03:37
>>

stat >> num â fixnum Instance Public methods Shift the bits in stat

2015-04-28 17:34:45
inspect

stat.inspect â string Instance Public methods Override the inspection method

2015-04-28 17:42:31
to_s

stat.to_s â string Instance Public methods Show pid and exit status as a

2015-04-28 18:16:44
to_i

stat.to_i â fixnumstat.to_int â fixnum Instance Public methods Returns

2015-04-28 18:10:20
==

stat == other â true or false Instance Public methods Returns true

2015-04-28 17:27:40
coredump?

stat.coredump? â true or false Instance Public methods Returns true

2015-04-28 17:36:10