diff options
author | Niclas Axelsson <[email protected]> | 2011-03-04 17:01:27 +0100 |
---|---|---|
committer | Niclas Axelsson <[email protected]> | 2011-03-04 17:01:31 +0100 |
commit | ac73b2c8efa68f0237febd1fb0cde5e5ee59215e (patch) | |
tree | 156cebbd22918b4bc09296038d187a1ca312d131 /lib | |
parent | e454e0f3d45c30fcb24f6e06a9e1f7408a8db5d7 (diff) | |
parent | 804bb7f78fcf94609f31a9d429b82c37d1f1173b (diff) | |
download | otp-ac73b2c8efa68f0237febd1fb0cde5e5ee59215e.tar.gz otp-ac73b2c8efa68f0237febd1fb0cde5e5ee59215e.tar.bz2 otp-ac73b2c8efa68f0237febd1fb0cde5e5ee59215e.zip |
Merge branch 'ks/process_status' into dev
* ks/process_status:
Document exiting and garbage_collecting process statuses
OTP-9102
Diffstat (limited to 'lib')
-rw-r--r-- | lib/hipe/cerl/erl_bif_types.erl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/hipe/cerl/erl_bif_types.erl b/lib/hipe/cerl/erl_bif_types.erl index adddd88ae3..30b911c41b 100644 --- a/lib/hipe/cerl/erl_bif_types.erl +++ b/lib/hipe/cerl/erl_bif_types.erl @@ -4636,7 +4636,8 @@ t_process_priority_level() -> t_sup([t_atom('max'), t_atom('high'), t_atom('normal'), t_atom('low')]). t_process_status() -> - t_sup([t_atom('runnable'), t_atom('running'), + t_sup([t_atom('exiting'), t_atom('garbage_collecting'), + t_atom('runnable'), t_atom('running'), t_atom('suspended'), t_atom('waiting')]). t_raise_errorclass() -> |