diff options
author | Sverker Eriksson <[email protected]> | 2016-10-26 17:44:14 +0200 |
---|---|---|
committer | Sverker Eriksson <[email protected]> | 2016-10-26 19:38:00 +0200 |
commit | 21e49c8b2f3683b50750fb6a756810c8ba52b749 (patch) | |
tree | 88f2104b68049a9541da21a9afefe5e7992452de /erts/emulator/beam/erl_fun.h | |
parent | 3223059923314313ffff9c7b09ab0a73bf18238b (diff) | |
download | otp-21e49c8b2f3683b50750fb6a756810c8ba52b749.tar.gz otp-21e49c8b2f3683b50750fb6a756810c8ba52b749.tar.bz2 otp-21e49c8b2f3683b50750fb6a756810c8ba52b749.zip |
erts: Fix new fun purge strategy for hipe
Diffstat (limited to 'erts/emulator/beam/erl_fun.h')
-rw-r--r-- | erts/emulator/beam/erl_fun.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/erts/emulator/beam/erl_fun.h b/erts/emulator/beam/erl_fun.h index 6ba055d92c..717bfee0fb 100644 --- a/erts/emulator/beam/erl_fun.h +++ b/erts/emulator/beam/erl_fun.h @@ -45,6 +45,9 @@ typedef struct erl_fun_entry { erts_refc_t refc; /* Reference count: One for code + one for each fun object in each process. */ BeamInstr *pend_purge_address; /* address stored during a pending purge */ +#ifdef HIPE + UWord* pend_purge_native_address; +#endif } ErlFunEntry; /* |