diff options
Diffstat (limited to 'elf/tst-dl_find_object-threads.c')
-rw-r--r-- | elf/tst-dl_find_object-threads.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/elf/tst-dl_find_object-threads.c b/elf/tst-dl_find_object-threads.c index de3b468fb8..331b90f6ec 100644 --- a/elf/tst-dl_find_object-threads.c +++ b/elf/tst-dl_find_object-threads.c @@ -138,12 +138,12 @@ check (void *address, struct dl_find_object *expected, int line) #endif } -/* Request process termination after 3 seconds. */ +/* Request process termination after 0.3 seconds. */ static bool exit_requested; static void * exit_thread (void *ignored) { - usleep (3 * 100 * 1000); + usleep (300 * 1000); __atomic_store_n (&exit_requested, true, __ATOMIC_RELAXED); return NULL; } |