summaryrefslogtreecommitdiff
path: root/lib/dialyzer/test/race_SUITE_data/src/whereis_diff_functions3_pathsens.erl
blob: a3a245b9ea80391b1d949ac26e661f885791d42e (plain)
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
%% This tests that the race condition detection between whereis/register
%% is robust w.r.t. having the calls in separate functions.
%% It takes into account control flow that might exist.

-module(whereis_diff_functions3_pathsens).
-export([start/3]).

start(AnAtom, Fun, FunName) ->
  Pid =
    case FunName of
      master ->
        case whereis(AnAtom) of
          undefined ->
            spawn(Fun);
          P when is_pid(P) ->
            P
        end;
      slave ->
        case whereis(AnAtom) of
          undefined ->
            spawn(Fun);
          P when is_pid(P) ->
            P
        end
    end,
  race(AnAtom, Pid).

race(Atom, Pid) ->
  register(Atom, Pid).