public inbox for glibc-cvs@sourceware.org
help / color / mirror / Atom feed
* [glibc] hurd: Remove lingering references to the time function
@ 2019-11-07  8:57 Florian Weimer
  0 siblings, 0 replies; only message in thread
From: Florian Weimer @ 2019-11-07  8:57 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=50471a8613dc487dce8b7cabc35a01b4b5b242ea

commit 50471a8613dc487dce8b7cabc35a01b4b5b242ea
Author: Florian Weimer <fweimer@redhat.com>
Date:   Thu Nov 7 09:52:34 2019 +0100

    hurd: Remove lingering references to the time function
    
    They cause a check-localplt failure after commit f9a7554009cf38f39.
    
    Fixes: f9a7554009cf38f390e74fcabc5b49f974f72382
    Reviewed-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
    Change-Id: I37bc20f3449b9e358f32879ed231720c969965b4

Diff:
---
 sysdeps/mach/sleep.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sysdeps/mach/sleep.c b/sysdeps/mach/sleep.c
index b30ec7b..267928e 100644
--- a/sysdeps/mach/sleep.c
+++ b/sysdeps/mach/sleep.c
@@ -33,10 +33,10 @@ __sleep (unsigned int seconds)
 
   recv = __mach_reply_port ();
 
-  before = time (NULL);
+  before = time_now ();
   (void) __mach_msg (NULL, MACH_RCV_MSG|MACH_RCV_TIMEOUT|MACH_RCV_INTERRUPT,
 		     0, 0, recv, seconds * 1000, MACH_PORT_NULL);
-  after = time (NULL);
+  after = time_now ();
   __mach_port_destroy (__mach_task_self (), recv);
 
   return seconds - (after - before);


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2019-11-07  8:57 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-11-07  8:57 [glibc] hurd: Remove lingering references to the time function Florian Weimer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).