diff options
author | Sverker Eriksson <[email protected]> | 2015-12-16 20:03:32 +0100 |
---|---|---|
committer | Sverker Eriksson <[email protected]> | 2016-01-13 19:59:54 +0100 |
commit | 79efde2d8503e5055ef9e8afa5d8d63208710b1f (patch) | |
tree | 77342e16ab227d8b9a175f4573305f244d17cceb /erts/emulator/beam/global.h | |
parent | dc54c2a27c41930a18e0c7f2b97eda6cd4a0b1c1 (diff) | |
download | otp-79efde2d8503e5055ef9e8afa5d8d63208710b1f.tar.gz otp-79efde2d8503e5055ef9e8afa5d8d63208710b1f.tar.bz2 otp-79efde2d8503e5055ef9e8afa5d8d63208710b1f.zip |
erts: Make copy_literals more fail safe
* Same process must do enable-disable.
* System process will force it and never get 'aborted'
Diffstat (limited to 'erts/emulator/beam/global.h')
-rw-r--r-- | erts/emulator/beam/global.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/erts/emulator/beam/global.h b/erts/emulator/beam/global.h index 0bf5988244..bbf684d49d 100644 --- a/erts/emulator/beam/global.h +++ b/erts/emulator/beam/global.h @@ -990,6 +990,7 @@ Eterm erts_check_process_code(Process *c_p, Eterm module, int allow_gc, int *red typedef struct { Eterm *ptr; Uint sz; + Eterm pid; } copy_literals_t; extern copy_literals_t erts_clrange; |