is_process_alive(Pid) -> boolean()
類型:
Pid = pid()
Pid
必須引用本地節點上的進程。
如果進程存在且處於活動狀態,即未退出且尚未退出,則返回true
。否則返回 false
。
如果進程 P1
調用 is_process_alive(P2Pid)
,則保證在調用之前從 P1
發送到 P2
(P2
是標識符為 P2Pid
的進程)的所有信號都將在調用之前傳遞到 P2
檢查 P2
的活動性。這一保證意味著可以使用 is_process_alive/1
讓進程 P1
等待,直到進程 P2
被終止,該進程已從 P1 獲得因 kill
原因的退出信號。例子:
exit(P2Pid, kill),
% P2 might not be killed
is_process_alive(P2Pid),
% P2 is not alive (the call above always return false)
相關用法
- erlang is_process_alive用法及代碼示例
- erlang is_pid用法及代碼示例
- erlang is_file用法及代碼示例
- erlang is_dir用法及代碼示例
- erlang is_atom用法及代碼示例
- erlang is_key用法及代碼示例
- erlang is_tuple用法及代碼示例
- erlang is_binary用法及代碼示例
- erlang is_alive用法及代碼示例
- erlang is_map_key(Key, Map)用法及代碼示例
- erlang is_key(Key, Map)用法及代碼示例
- erlang is_empty(String :: unicode:chardata())用法及代碼示例
- erlang is_equal(AnySet1, AnySet2)用法及代碼示例
- erlang init(UserData :: user_data(), AccessMode :: write | read, Fun :: file_op())用法及代碼示例
- erlang insert_element(Index, Tuple1, Term)用法及代碼示例
- erlang integer_to_binary(Integer)用法及代碼示例
- erlang integer_to_binary(Integer, Base)用法及代碼示例
- erlang integer_to_list(Integer)用法及代碼示例
- erlang integer_to_list(Integer, Base)用法及代碼示例
- erlang iolist_size(Item)用法及代碼示例
- erlang iolist_to_binary(IoListOrBinary)用法及代碼示例
- erlang iolist_to_iovec(IoListOrBinary)用法及代碼示例
- erlang in(Item, Q1 :: queue(Item))用法及代碼示例
- erlang in_r(Item, Q1 :: queue(Item))用法及代碼示例
- erlang init(Q1 :: queue(Item))用法及代碼示例
注:本文由純淨天空篩選整理自erlang.org大神的英文原創作品 is_process_alive(Pid) -> boolean()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。