gettimeofday.
2007-02-02 Jakub Jelinek <jakub@redhat.com>
* nscd/nscd_helper.c (open_socket): Use __gettimeofday instead of
gettimeofday.
+2007-02-02 Jakub Jelinek <jakub@redhat.com>
+
+ * nscd/nscd_helper.c (open_socket): Use __gettimeofday instead of
+ gettimeofday.
+
2007-02-01 Ulrich Drepper <drepper@redhat.com>
* sysdeps/unix/sysv/linux/i386/sysdep.h (PTR_MANGLE): Roll value before
int to;
if (first_try)
{
- gettimeofday (&tvend, NULL);
+ (void) __gettimeofday (&tvend, NULL);
tvend.tv_sec += 5;
to = 5 * 1000;
first_try = false;
else
{
struct timeval now;
- gettimeofday (&now, NULL);
+ (void) __gettimeofday (&now, NULL);
to = ((tvend.tv_sec - now.tv_sec) * 1000
+ (tvend.tv_usec - now.tv_usec) / 1000);
}