diff options
author | Siri Hansen <[email protected]> | 2014-05-07 11:17:24 +0200 |
---|---|---|
committer | Siri Hansen <[email protected]> | 2014-05-26 11:53:25 +0200 |
commit | 6c3d24ccbc597e6d31db1f559470cc59585fdf52 (patch) | |
tree | 8509ed16e8f241b63dc0a5c9d202eb72d325bf4f /lib/stdlib/test/sys_sp2.erl | |
parent | aa0caafe360cce6afd91739a019ec1f8b3478424 (diff) | |
download | otp-6c3d24ccbc597e6d31db1f559470cc59585fdf52.tar.gz otp-6c3d24ccbc597e6d31db1f559470cc59585fdf52.tar.bz2 otp-6c3d24ccbc597e6d31db1f559470cc59585fdf52.zip |
Add system message 'terminate'
This is to be used when implementing synchronous stop of generic
behaviours and other 'sys special processes'.
Diffstat (limited to 'lib/stdlib/test/sys_sp2.erl')
-rw-r--r-- | lib/stdlib/test/sys_sp2.erl | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/lib/stdlib/test/sys_sp2.erl b/lib/stdlib/test/sys_sp2.erl index f1188461f1..a0847b5838 100644 --- a/lib/stdlib/test/sys_sp2.erl +++ b/lib/stdlib/test/sys_sp2.erl @@ -17,7 +17,7 @@ %% %CopyrightEnd% %% -module(sys_sp2). --export([start_link/1, stop/0]). +-export([start_link/1]). -export([alloc/0, free/1]). -export([init/1]). -export([system_continue/3, system_terminate/4, @@ -30,10 +30,6 @@ start_link(NumCh) -> proc_lib:start_link(?MODULE, init, [[self(),NumCh]]). -stop() -> - ?MODULE ! stop, - ok. - alloc() -> ?MODULE ! {self(), alloc}, receive @@ -69,11 +65,7 @@ loop(Chs, Parent, Deb) -> loop(Chs2, Parent, Deb2); {system, From, Request} -> sys:handle_system_msg(Request, From, Parent, - ?MODULE, Deb, Chs); - stop -> - sys:handle_debug(Deb, fun write_debug/3, - ?MODULE, {in, stop}), - ok + ?MODULE, Deb, Chs) end. system_continue(Parent, Deb, Chs) -> |