aboutsummaryrefslogtreecommitdiffstats
path: root/erts/emulator/hipe/hipe_load.h
diff options
context:
space:
mode:
authorSverker Eriksson <[email protected]>2016-10-02 16:17:21 +0200
committerSverker Eriksson <[email protected]>2016-10-14 14:29:16 +0200
commit1e8588e8c310a628fb0215ef15dc3cc29f98c336 (patch)
tree43bc0fb812e0cd5a4c3ea2f8927ac22d97e4b0d3 /erts/emulator/hipe/hipe_load.h
parent6ce2fbadd41b657820276856299911470fb0a706 (diff)
downloadotp-1e8588e8c310a628fb0215ef15dc3cc29f98c336.tar.gz
otp-1e8588e8c310a628fb0215ef15dc3cc29f98c336.tar.bz2
otp-1e8588e8c310a628fb0215ef15dc3cc29f98c336.zip
erts: Refactor hipe_loader_state_dtor into a true destructor
that is only called once. Basically switch hipe_free_loader_state and hipe_loader_state_dtor.
Diffstat (limited to 'erts/emulator/hipe/hipe_load.h')
-rw-r--r--erts/emulator/hipe/hipe_load.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/hipe/hipe_load.h b/erts/emulator/hipe/hipe_load.h
index 17dd3c3c05..40c8a8aa2a 100644
--- a/erts/emulator/hipe/hipe_load.h
+++ b/erts/emulator/hipe/hipe_load.h
@@ -42,7 +42,7 @@ typedef struct hipe_loader_state {
} HipeLoaderState;
extern Binary *hipe_alloc_loader_state(Eterm module);
-extern void hipe_free_loader_state(Binary *binary);
+extern void hipe_free_loader_state(HipeLoaderState*);
extern HipeLoaderState *hipe_get_loader_state(Binary *binary);
#endif /* HIPE_LOAD_H */