aboutsummaryrefslogtreecommitdiffstats
path: root/erts/emulator/test/alloc_SUITE_data/coalesce.erl
blob: 453c726c4e7c31a3aff691e9256d7295610f7754 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
-module(coalesce).

-export([init/1, start/1, run/1, stop/1]).

init(File) ->
    ok = erlang:load_nif(File, 0).

start(_) -> erlang:nif_error(not_loaded).
run(_)  -> erlang:nif_error(not_loaded).
stop(_) -> erlang:nif_error(not_loaded).