diff options
author | Volker Lendecke <vl@samba.org> | 2009-05-01 21:34:12 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2009-05-01 21:43:25 +0200 |
commit | 9713476f65f1b0216007462427a4e66dd74e9dd4 (patch) | |
tree | caf7fff47bd95ae6c9d6fd0ed4938182a2881aaf | |
parent | 30038534f4e846b14ec737a2726213d8a8db9d44 (diff) | |
download | samba-9713476f65f1b0216007462427a4e66dd74e9dd4.tar.gz |
Many build farm boxes do not have clock_gettime
-rw-r--r-- | source3/lib/pthreadpool.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/lib/pthreadpool.c b/source3/lib/pthreadpool.c index c5f2b41265e..b62bab0a2ee 100644 --- a/source3/lib/pthreadpool.c +++ b/source3/lib/pthreadpool.c @@ -333,8 +333,8 @@ static void *pthreadpool_server(void *arg) * time, exit this thread. */ - clock_gettime(CLOCK_REALTIME, &timeout); - timeout.tv_sec += 1; + timeout.tv_sec = time(NULL) + 1; + timeout.tv_nsec = 0; while ((pool->jobs == NULL) && (pool->shutdown == 0)) { |