aboutsummaryrefslogtreecommitdiffstats
path: root/lib/dialyzer/test/race_tests_SUITE_data/src/ets_insert_args8.erl
blob: 832fc2eef1d76404c85214ac17fca43d996e3445 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
%% This tests the presence of possible races due to an ets:lookup/ets:insert
%% combination. It takes into account the argument types of the calls.

-module(ets_insert_args8).
-export([test/1]).

test(Foo) ->
  ets:new(Foo, [named_table, public]),
  race(Foo).

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

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