2000-04-12  Andreas Jaeger  <aj@suse.de>

	* sysdeps/unix/i386/i586/clock_gettime.c: Fix typo.

	* sysdeps/unix/sysv/linux/i386/get_clockfreq.c: Include <string.h>
	for memmem declaration.

	* sysdeps/unix/clock_gettime.c (clock_gettime): Initialize retval
	to -1.
	* sysdeps/posix/clock_getres.c (clock_getres): Likewise.
This commit is contained in:
Ulrich Drepper 2000-04-12 20:53:19 +00:00
parent a4dec43d31
commit 4a1995267e
5 changed files with 15 additions and 6 deletions

View File

@ -1,5 +1,16 @@
2000-04-12 Andreas Jaeger <aj@suse.de>
* sysdeps/unix/i386/i586/clock_gettime.c: Fix typo.
* sysdeps/unix/sysv/linux/i386/get_clockfreq.c: Include <string.h>
for memmem declaration.
2000-04-12 Ulrich Drepper <drepper@redhat.com>
* sysdeps/unix/clock_gettime.c (clock_gettime): Initialize retval
to -1.
* sysdeps/posix/clock_getres.c (clock_getres): Likewise.
* libio/iopopen.c (_IO_new_proc_open): Close pipes in case the
mode is invalid.
* libio/oldiopopen.c (_IO_old_proc_open): Likewise.

View File

@ -29,7 +29,7 @@
int
clock_getres (clockid_t clock_id, struct timespec *res)
{
int retval;
int retval = -1;
switch (clock_id)
{
@ -37,7 +37,6 @@ clock_getres (clockid_t clock_id, struct timespec *res)
{
long int clk_tck = sysconf (_SC_CLK_TCK);
retval = -1;
if (__builtin_expect (clk_tck != -1, 1))
{
/* This implementation assumes that the realtime clock has a
@ -55,7 +54,6 @@ clock_getres (clockid_t clock_id, struct timespec *res)
default:
__set_errno (EINVAL);
retval = -1;
break;
}

View File

@ -29,7 +29,7 @@ int
clock_gettime (clockid_t clock_id, struct timespec *tp)
{
struct timeval tv;
int retval;
int retval = -1;
switch (clock_id)
{
@ -44,7 +44,6 @@ clock_gettime (clockid_t clock_id, struct timespec *tp)
default:
__set_errno (EINVAL);
retval = -1;
break;
}

View File

@ -27,7 +27,7 @@
/* Function to determine processor frequency. */
extern unsigned long long int __get_glockfreq (void);
extern unsigned long long int __get_clockfreq (void);
/* Clock frequency of the processor. We make it a 64-bit variable
because some jokers are already playing with processors with more

View File

@ -19,6 +19,7 @@
#include <ctype.h>
#include <fcntl.h>
#include <string.h>
#include <unistd.h>