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





                                                                        
               
                        

             
                
%% This tests that the race condition detection between whereis/register
%% is robust w.r.t. having the calls in separate modules.

-module(whereis_diff_modules4).
-export([no_race/1, race/1]).

no_race(Pid) ->
  register(master, Pid).

race(Atom) ->
  whereis(Atom).