]> Git Repo - qemu.git/commit - tests/atomic64-bench.c
tests: use g_usleep instead of rem = sleep(time)
authorAlex Bennée <[email protected]>
Fri, 11 Jan 2019 13:50:02 +0000 (13:50 +0000)
committerAlex Bennée <[email protected]>
Mon, 14 Jan 2019 14:52:30 +0000 (14:52 +0000)
commiteb4f8e100f1ffce3be797ac56dcad031ffef3b8f
tree37f67443b0160e101cf814b728f7bb8a08f052b0
parentd406015b6a1e0cc8eda10816ddbecd7917f79297
tests: use g_usleep instead of rem = sleep(time)

Relying on sleep to always return having slept isn't safe as a signal
may have occurred. If signals are constantly incoming the program will
never reach its termination condition. This is believed to be the
mechanism causing time outs for qht-test in Travis.

The glib g_usleep() deals with all of this for us so lets use it instead.

Signed-off-by: Alex Bennée <[email protected]>
Reviewed-by: Peter Maydell <[email protected]>
tests/atomic64-bench.c
tests/atomic_add-bench.c
tests/qht-bench.c
This page took 0.025723 seconds and 4 git commands to generate.