diff options
author | Sverker Eriksson <[email protected]> | 2016-01-21 19:57:08 +0100 |
---|---|---|
committer | Lukas Larsson <[email protected]> | 2016-02-02 10:45:22 +0100 |
commit | 5e60a53cf306eb29a1f8396e773205d02a419ef6 (patch) | |
tree | 539ba155d0f5d6b9d2db1cdd273a812b083f563a /erts | |
parent | 0bf37ca78b6200f8b82b20234f0b882154a094ff (diff) | |
download | otp-5e60a53cf306eb29a1f8396e773205d02a419ef6.tar.gz otp-5e60a53cf306eb29a1f8396e773205d02a419ef6.tar.bz2 otp-5e60a53cf306eb29a1f8396e773205d02a419ef6.zip |
erts: Make msacc alloctor type thread safe
LONG_LIVED is not thread safe on non-smp and
can only be used by scheduler.
Diffstat (limited to 'erts')
-rw-r--r-- | erts/emulator/beam/erl_alloc.types | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/beam/erl_alloc.types b/erts/emulator/beam/erl_alloc.types index 6b7eff1428..5f153ac0ab 100644 --- a/erts/emulator/beam/erl_alloc.types +++ b/erts/emulator/beam/erl_alloc.types @@ -361,7 +361,7 @@ type AINFO_REQ SHORT_LIVED SYSTEM alloc_info_request type SCHED_WTIME_REQ SHORT_LIVED SYSTEM sched_wall_time_request type GC_INFO_REQ SHORT_LIVED SYSTEM gc_info_request type PORT_DATA_HEAP STANDARD SYSTEM port_data_heap -type MSACC LONG_LIVED SYSTEM microstate_accounting +type MSACC DRIVER SYSTEM microstate_accounting # # Types used by system specific code |