aboutsummaryrefslogblamecommitdiffstats
path: root/lib/dialyzer/test/race_SUITE_data/src/whereis_diff_functions2_pathsens.erl
blob: e9ce4bc48e0f4f181674e985d372ae79cee5b8e3 (plain) (tree)
1
2
3
4
5
6
7
8
9







                                                                        
       
















                               
                                

                            
%% 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_functions2_pathsens).
-export([race/4]).

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(Atom, Fun, FunName, Pid) ->
  start(Atom, Fun, FunName),
  register(Atom, Pid).