summaryrefslogtreecommitdiff
path: root/lib/dialyzer/test/race_SUITE_data/src/whereis_intra_inter_module6/whereis_intra_inter_module12.erl
blob: c2f5d560a06ab3b0f3f84bc3378ea29b8e0dd525 (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_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).