aboutsummaryrefslogtreecommitdiffstats
path: root/lib/dialyzer/test/race_tests_SUITE_data/src/whereis_diff_modules2/whereis_diff_modules4.erl
blob: 6ab9a4d8247ec52bbc743a9f6fa9cf7f8ca6f087 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
%% 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).