mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-29 11:41:21 +03:00
Update.
1999-02-22 Ulrich Drepper <drepper@cygnus.com> * sysdeps/unix/sysv/linux/clock.c: Don't test return value of __times [PR libc/990].
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
1999-02-22 Ulrich Drepper <drepper@cygnus.com>
|
||||||
|
|
||||||
|
* sysdeps/unix/sysv/linux/clock.c: Don't test return value of
|
||||||
|
__times [PR libc/990].
|
||||||
|
|
||||||
1999-02-21 David S. Miller <davem@redhat.com>
|
1999-02-21 David S. Miller <davem@redhat.com>
|
||||||
|
|
||||||
* sysdeps/unix/sysv/linux/sparc/sparc32/sigcontextinfo.h: Fix
|
* sysdeps/unix/sysv/linux/sparc/sparc32/sigcontextinfo.h: Fix
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Copyright (C) 1991, 1992, 1996 Free Software Foundation, Inc.
|
/* Copyright (C) 1991, 1992, 1996, 1999 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
|
|
||||||
The GNU C Library is free software; you can redistribute it and/or
|
The GNU C Library is free software; you can redistribute it and/or
|
||||||
@ -27,8 +27,14 @@ clock (void)
|
|||||||
struct tms buf;
|
struct tms buf;
|
||||||
long clk_tck = __sysconf (_SC_CLK_TCK);
|
long clk_tck = __sysconf (_SC_CLK_TCK);
|
||||||
|
|
||||||
if (__times (&buf) < 0)
|
/* We don't check for errors here. The only error the kernel
|
||||||
return (clock_t) -1;
|
returns is EFAULT if the value cannot be written to the struct we
|
||||||
|
pass a pointer to. Otherwise the kernel returns an `unsigned
|
||||||
|
long' value which is the number of jiffies since system start.
|
||||||
|
But this number can be negative (when read as `long') when the
|
||||||
|
system is up for some time. Ignoring errors should therefore
|
||||||
|
have no negative impacts but solve the problem. */
|
||||||
|
__times (&buf);
|
||||||
|
|
||||||
return
|
return
|
||||||
(clk_tck <= CLOCKS_PER_SEC)
|
(clk_tck <= CLOCKS_PER_SEC)
|
||||||
|
Reference in New Issue
Block a user