1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-03-10 16:58:47 +03:00

cleanup: always set nsec

This commit is contained in:
Zdenek Kabelac 2015-10-13 09:39:18 +02:00
parent f4fb97c850
commit 842a7a17e3

View File

@ -568,12 +568,12 @@ static void *_timeout_thread(void *unused __attribute__((unused)))
time_t curr_time;
DEBUGLOG("Timeout thread starting.");
timeout.tv_nsec = 0;
pthread_cleanup_push(_exit_timeout, NULL);
pthread_mutex_lock(&_timeout_mutex);
while (!dm_list_empty(&_timeout_registry)) {
timeout.tv_sec = 0;
timeout.tv_nsec = 0;
curr_time = time(NULL);
dm_list_iterate_items_gen(thread, &_timeout_registry, timeout_list) {