diff options
author | Rickard Green <[email protected]> | 2013-03-12 01:30:56 +0100 |
---|---|---|
committer | Rickard Green <[email protected]> | 2013-03-12 01:30:56 +0100 |
commit | 9798b72e852e5059b8d8d10cdf12b8c7fc07b406 (patch) | |
tree | 44d964da8c4ce2b09ecd21ebbf9e54cb7f2484b7 /erts | |
parent | 05f11890bdfec4bfc3a78e191a87e70a937ffc54 (diff) | |
download | otp-9798b72e852e5059b8d8d10cdf12b8c7fc07b406.tar.gz otp-9798b72e852e5059b8d8d10cdf12b8c7fc07b406.tar.bz2 otp-9798b72e852e5059b8d8d10cdf12b8c7fc07b406.zip |
Fix erlang:is_process_alive/1
Diffstat (limited to 'erts')
-rwxr-xr-x | erts/emulator/beam/erl_bif_info.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/beam/erl_bif_info.c b/erts/emulator/beam/erl_bif_info.c index 8582a8954b..379d3eecc6 100755 --- a/erts/emulator/beam/erl_bif_info.c +++ b/erts/emulator/beam/erl_bif_info.c @@ -3077,7 +3077,7 @@ BIF_RETTYPE is_process_alive_1(BIF_ALIST_1) if (BIF_ARG_1 == BIF_P->common.id) BIF_RET(am_true); - rp = erts_proc_lookup(BIF_ARG_1); + rp = erts_proc_lookup_raw(BIF_ARG_1); if (!rp) { BIF_RET(am_false); } |