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.
+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.
int
clock_getres (clockid_t clock_id, struct timespec *res)
{
- int retval;
+ int retval = -1;
switch (clock_id)
{
{
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
default:
__set_errno (EINVAL);
- retval = -1;
break;
}
clock_gettime (clockid_t clock_id, struct timespec *tp)
{
struct timeval tv;
- int retval;
+ int retval = -1;
switch (clock_id)
{
default:
__set_errno (EINVAL);
- retval = -1;
break;
}
/* 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
#include <ctype.h>
#include <fcntl.h>
+#include <string.h>
#include <unistd.h>