aboutsummaryrefslogtreecommitdiffstats
path: root/lib/dialyzer/test/race_SUITE_data/src/whereis_rec_function3.erl
blob: e101f34fba10e7aa6bbc3866c894bbd6da294f74 (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
%% This tests the presence of possible races due to a register/whereis
%% combination in a recursive function.

-module(whereis_rec_function3).
-export([test/0]).

test() ->
  start(undefined, second, mod:f(), self()).

start(AnAtom, NextAtom, Fun, Id) ->
  case AnAtom of
    undefined -> register(start, Id);
    _ -> register(AnAtom, Id)
  end,
  Pid =
    case whereis(NextAtom) of
      undefined -> spawn(Fun);
      P1 when is_pid(P1) -> P1
    end,
  case whereis(NextAtom) of
    undefined ->
      case Pid =:= self() of
        true -> ok;
        false -> start(NextAtom, mod:next(), Pid, Id), io:format("", [])
      end;
    P2 when is_pid(P2) -> ok
  end.