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()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。