is_process_alive
优质
小牛编辑
127浏览
2023-12-01
这称为is_process_alive(Pid) 。 Pid必须引用本地节点上的进程。 如果进程存在且处于活动状态,即它是否未退出且未退出,则返回true。 否则,返回false。
语法 (Syntax)
is_process_alive(processid)
参数 (Parameters)
processid - 这是需要检查的进程ID(如果存在)。
返回值 (Return Value)
Returns true - 如果进程id存在,则返回false。
例如 (For example)
-module(helloworld).
-export([start/0, call/2]).
call(Arg1, Arg2) ->
io:format("~p ~p~n", [Arg1, Arg2]).
start() ->
Pid = spawn(?MODULE, call, ["hello", "process"]),
io:fwrite("~p~n",[is_process_alive(Pid)]).
输出 (Output)
当我们运行上述程序时,我们将得到以下结果。
true
"hello" "process"