diff options
author | Kostis Sagonas <[email protected]> | 2011-03-02 09:32:09 +0200 |
---|---|---|
committer | Kostis Sagonas <[email protected]> | 2011-03-02 09:32:09 +0200 |
commit | 804bb7f78fcf94609f31a9d429b82c37d1f1173b (patch) | |
tree | 9094483beb38f637a1200e2c8b30dc9200488f41 /lib | |
parent | 98d3b0c86ff3d99a4d175291df54c5ed48357fce (diff) | |
download | otp-804bb7f78fcf94609f31a9d429b82c37d1f1173b.tar.gz otp-804bb7f78fcf94609f31a9d429b82c37d1f1173b.tar.bz2 otp-804bb7f78fcf94609f31a9d429b82c37d1f1173b.zip |
Document exiting and garbage_collecting process statuses
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 309c118107..6c6a207b3c 100644 --- a/lib/hipe/cerl/erl_bif_types.erl +++ b/lib/hipe/cerl/erl_bif_types.erl @@ -4807,7 +4807,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() -> |