我有两个 gen_server 模块。
第一个服务器.erl
-module(serv).
-behaviour(gen_server).
-export([init/1,
handle_call/3,
handle_cast/2,
handle_info/2,
code_change/3,
terminate/2,
start_link/0
]).
start_link() ->
gen_server:start_link(?MODULE, [], []).
init([]) ->
process_flag(trap_exit, true),
spawn_link(user, start_link,[]),
{ok, []}.
handle_call(_E, _From, State) ->
{noreply, State}.
handle_cast(_Message, State) ->
{noreply, State}.
terminate(_Reason, _State) ->
ok.
handle_info(Message, State) ->
{noreply, State}.
code_change(_OldVersion, State, _Extra) ->
{ok, State}.
和user.erl(除了 init/1 完全一样):
init([]) ->
{ok, []}.
我以为服务器会永远存在。如果第一台服务器死机,另一台服务器会收到{'EXIT', Pid, Reason}消息。
但是如果您通过serv:start_link()启动模块,用户模块将在启动后立即退出并显示消息{'EXIT',Pid,normal}。用户为什么会死?