summaryrefslogtreecommitdiff
path: root/lib/dialyzer/test/race_SUITE_data/src/whereis_intra_inter_module3/whereis_intra_inter_module6.erl
blob: cd05431cd55e5473e19027a5077dfb039e73c91d (plain)
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_module6).
-export([no_race/1, race/2]).

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

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

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