X-Git-Url: http://sjero.net/git/?p=wget;a=blobdiff_plain;f=src%2Fptimer.c;h=c53b5e7215cd08c6d4ed62763e01bd9325d504eb;hp=9edddd82cb572442c55124b289f83f98348d4c07;hb=320cfdcb658e8d6556ae9dfd902c2db1db866a6b;hpb=caae3b70f46bd519857b595f7f06ea0179551336 diff --git a/src/ptimer.c b/src/ptimer.c index 9edddd82..c53b5e72 100644 --- a/src/ptimer.c +++ b/src/ptimer.c @@ -1,5 +1,6 @@ /* Portable timers. - Copyright (C) 2005, 2006, 2007, 2008 Free Software Foundation, Inc. + Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software + Foundation, Inc. This file is part of GNU Wget. @@ -56,13 +57,9 @@ as that of the covered work. */ #include #include #include -#ifdef HAVE_UNISTD_H -# include -#endif +#include #include -#ifdef HAVE_SYS_TIME_H -# include -#endif +#include /* Cygwin currently (as of 2005-04-08, Cygwin 1.5.14) lacks clock_getres, but still defines _POSIX_TIMERS! Because of that we simply use the @@ -71,6 +68,7 @@ as that of the covered work. */ # include #endif +#include "utils.h" #include "ptimer.h" /* Depending on the OS, one and only one of PTIMER_POSIX, @@ -132,7 +130,7 @@ posix_init (void) #endif { CLOCK_REALTIME, NO_SYSCONF_CHECK }, }; - int i; + size_t i; /* Determine the clock we can use. For a clock to be usable, it must be confirmed with sysconf (where applicable) and with @@ -351,7 +349,7 @@ ptimer_reset (struct ptimer *pt) } /* Measure the elapsed time since timer creation/reset. This causes - the timer to internally call clock_gettime (or gettimeofday, etc.) + the timer to internally call clock_gettime (or gettimeofday, etc.) to update its idea of current time. The time is returned, but is also stored for later access through ptimer_read().