diff options
author | Sverker Eriksson <[email protected]> | 2016-09-20 16:16:50 +0200 |
---|---|---|
committer | Sverker Eriksson <[email protected]> | 2016-10-14 14:29:16 +0200 |
commit | 966098ceb9dd9d18e9bcd37cd06b96045903e320 (patch) | |
tree | d1b5690ffb2005d0f2201058011c54f45902b5ac /erts/emulator/hipe/hipe_load.h | |
parent | e36c8d49359db1622ad381f705c54d460c4fb5e9 (diff) | |
download | otp-966098ceb9dd9d18e9bcd37cd06b96045903e320.tar.gz otp-966098ceb9dd9d18e9bcd37cd06b96045903e320.tar.bz2 otp-966098ceb9dd9d18e9bcd37cd06b96045903e320.zip |
erts: Move new hipe ref and sdesc lists to loader state
Diffstat (limited to 'erts/emulator/hipe/hipe_load.h')
-rw-r--r-- | erts/emulator/hipe/hipe_load.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/erts/emulator/hipe/hipe_load.h b/erts/emulator/hipe/hipe_load.h index 9e24e915ed..17dd3c3c05 100644 --- a/erts/emulator/hipe/hipe_load.h +++ b/erts/emulator/hipe/hipe_load.h @@ -36,6 +36,9 @@ typedef struct hipe_loader_state { void *data_segment; Uint data_segment_size; + struct hipe_ref* new_hipe_refs; + struct hipe_sdesc* new_hipe_sdesc; + } HipeLoaderState; extern Binary *hipe_alloc_loader_state(Eterm module); |