aboutsummaryrefslogtreecommitdiffstats
path: root/lib/dialyzer/test/race_tests_SUITE_data/src/whereis_intra_inter_module6/whereis_intra_inter_module12.erl
blob: 2160780d8e0588162c7069e9cad4dc9ba5feac08 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
%% This tests that the race condition detection between whereis/register
%% is robust w.r.t. having the calls in separate functions and modules.

-module(whereis_intra_inter_module12).
-export([no_race/1, race/2, continue/2]).

no_race(Pid) ->
  register(master, Pid).
	
race(Atom, Pid) -> 
  continue(Atom, Pid).

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