diff options
author | Rickard Green <[email protected]> | 2012-12-11 16:56:25 +0100 |
---|---|---|
committer | Rickard Green <[email protected]> | 2012-12-11 16:56:25 +0100 |
commit | 17532edb1301f52c1dbc37955a527bb1da333b4d (patch) | |
tree | 40620bf882a83a92092ef052d2048ad50eebba29 /erts/emulator/beam/io.c | |
parent | 3d68194518f154c9c7e440b096c311cd2572dd78 (diff) | |
parent | 70debf33fadd0b897995365266bc6457abd8e62b (diff) | |
download | otp-17532edb1301f52c1dbc37955a527bb1da333b4d.tar.gz otp-17532edb1301f52c1dbc37955a527bb1da333b4d.tar.bz2 otp-17532edb1301f52c1dbc37955a527bb1da333b4d.zip |
Merge branch 'rickard/r16/port-optimizations/OTP-10336'
* rickard/r16/port-optimizations/OTP-10336:
Fix bit set op of non-atomic fallback in atomic API
Fix debug build on threads disabled build
Diffstat (limited to 'erts/emulator/beam/io.c')
-rw-r--r-- | erts/emulator/beam/io.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/beam/io.c b/erts/emulator/beam/io.c index 3fc124589b..be094862d4 100644 --- a/erts/emulator/beam/io.c +++ b/erts/emulator/beam/io.c @@ -434,7 +434,7 @@ erts_port_cleanup(Port *prt) void erts_port_free(Port *prt) { -#if defined(ERTS_SMP) || defined(ERTS_ENABLE_LOCK_CHECK) +#if defined(ERTS_SMP) || defined(DEBUG) || defined(ERTS_ENABLE_LOCK_CHECK) erts_aint32_t state = erts_atomic32_read_nob(&prt->state); #endif ERTS_LC_ASSERT(state & (ERTS_PORT_SFLG_INITIALIZING |