aboutsummaryrefslogtreecommitdiffstats
path: root/lib/stdlib/test/stdlib_bench_SUITE_data/simple_server_timer_mon.erl
blob: 6124ca29c213178e8bb4c6eeca49a4a1c29caabd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
-module(simple_server_timer_mon).

%% Local process. Timer. Monitor.

-export([start/1, reply/2, stop/1]).

start(State) ->
    spawn(fun() -> loop(State) end).

stop(P) ->
    P ! {stop, self()},
    receive
        ok ->
            ok
    end.

loop(S) ->
    receive
        {reply, P, Mref, M} ->
            P ! {ok, Mref, M},
            loop(S);
        {stop, P} ->
            P ! ok
    end.

reply(P, M) ->
    Mref = erlang:monitor(process, P),
    P ! {reply, self(), Mref, M},
    receive
        {ok, Mref,  M} ->
            erlang:demonitor(Mref, [flush]),
            ok
    after 100 ->
            exit(fel)
    end.