aboutsummaryrefslogtreecommitdiffstats
path: root/erts/emulator/sys
diff options
context:
space:
mode:
authorLukas Larsson <[email protected]>2018-12-12 09:40:22 +0100
committerLukas Larsson <[email protected]>2019-01-07 14:38:59 +0100
commitbe39c49819ea2031f7d11647f34a3519198932e8 (patch)
treef6caddeb6fe63c5446001940d66d7d1bdb60559d /erts/emulator/sys
parent3825199794da28d79b21052a2e69e2335921d55e (diff)
downloadotp-be39c49819ea2031f7d11647f34a3519198932e8.tar.gz
otp-be39c49819ea2031f7d11647f34a3519198932e8.tar.bz2
otp-be39c49819ea2031f7d11647f34a3519198932e8.zip
erts: Fix pollset test cases
Diffstat (limited to 'erts/emulator/sys')
-rw-r--r--erts/emulator/sys/common/erl_check_io.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/erts/emulator/sys/common/erl_check_io.c b/erts/emulator/sys/common/erl_check_io.c
index c681fa481f..ac9a070bce 100644
--- a/erts/emulator/sys/common/erl_check_io.c
+++ b/erts/emulator/sys/common/erl_check_io.c
@@ -2262,14 +2262,14 @@ erts_check_io_info(void *proc)
#if ERTS_POLL_USE_FALLBACK
erts_poll_info_flbk(get_fallback_pollset(), &piv[0]);
- piv[0].poll_threads = 1;
+ piv[0].poll_threads = 0;
piv[0].active_fds = 0;
piv++;
#endif
#if ERTS_POLL_USE_SCHEDULER_POLLING
erts_poll_info(get_scheduler_pollset(0), &piv[0]);
- piv[0].poll_threads = 1;
+ piv[0].poll_threads = 0;
piv[0].active_fds = 0;
piv++;
#endif