aboutsummaryrefslogtreecommitdiffstats
path: root/lib/dialyzer/test/race_tests_SUITE_data/src/ets_insert_diff_atoms_race4.erl
blob: d0a3f0a1d1e40f9bc634ee759f20948035c58a4a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
%% This tests that the race condition detection between ets:lookup/
%% ets:insert is robust even when the functions are called with
%% different atoms as arguments.

-module(ets_insert_diff_atoms_race4).
-export([test/0]).

test() ->
  ets:new(foo, [named_table, public]),
  {race(foo, counter), no_race(foo, counter)}.

race(Tab, Counter) ->
    [{_, N}] = ets:lookup(Tab, Counter),
    aux(Tab, Counter, N).

no_race(Tab, Counter) ->
    [{_, N}] = ets:lookup(Tab, Counter),
    AnotherTab = bar,
    aux(AnotherTab, Counter, N).

aux(Table, Counter, N) -> 
  ets:insert(Table, {Counter, N+1}).