aboutsummaryrefslogblamecommitdiffstats
path: root/lib/dialyzer/test/race_tests_SUITE_data/src/whereis_diff_functions2_pathsens.erl
blob: cbd9a7d016ffa6a1d208006857b5339eb395ce6d (plain) (tree)




























                                                                        
%% 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).