diff options
author | Sverker Eriksson <[email protected]> | 2016-10-13 20:59:58 +0200 |
---|---|---|
committer | Sverker Eriksson <[email protected]> | 2016-10-14 14:43:50 +0200 |
commit | 3582e6f420d84ddac64b55cb13100f1ae7f31b08 (patch) | |
tree | 6ece73414540dc8d923999b6ebb4e62f8e755b6d /erts/emulator/hipe/hipe_bif0.h | |
parent | 7d5021bc9e1150b5d839438756851b3175f3ba85 (diff) | |
download | otp-3582e6f420d84ddac64b55cb13100f1ae7f31b08.tar.gz otp-3582e6f420d84ddac64b55cb13100f1ae7f31b08.tar.bz2 otp-3582e6f420d84ddac64b55cb13100f1ae7f31b08.zip |
erts: Replace unsafe Module.first_hipe_ref
with hash table mod2mfa_tab
Diffstat (limited to 'erts/emulator/hipe/hipe_bif0.h')
-rw-r--r-- | erts/emulator/hipe/hipe_bif0.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/erts/emulator/hipe/hipe_bif0.h b/erts/emulator/hipe/hipe_bif0.h index 02f0d6c823..4a59bacc6e 100644 --- a/erts/emulator/hipe/hipe_bif0.h +++ b/erts/emulator/hipe/hipe_bif0.h @@ -36,9 +36,9 @@ extern int hipe_find_mfa_from_ra(const void *ra, Eterm *m, Eterm *f, unsigned in /* needed in beam_load.c */ int hipe_need_blocking(Module*); int hipe_purge_need_blocking(Module*); -void hipe_purge_refs(struct hipe_ref*, Eterm); -void hipe_purge_sdescs(struct hipe_sdesc*, Eterm); -void hipe_purge_module(Module*); +void hipe_purge_refs(struct hipe_ref*, Eterm, int is_blocking); +void hipe_purge_sdescs(struct hipe_sdesc*, Eterm, int is_blocking); +void hipe_purge_module(Module*, int is_blocking); void hipe_redirect_to_module(Module* modp); /* these are also needed in hipe_amd64.c */ |