diff options
author | Andreas Schwab <schwab@linux-m68k.org> | 2012-10-11 14:48:32 +0200 |
---|---|---|
committer | Andreas Schwab <schwab@linux-m68k.org> | 2012-10-12 16:54:06 +0200 |
commit | ca38dc17d85b09776a709c8ea7155c414df14073 (patch) | |
tree | 1e5002e92489c76763d4fa955e8aa3f605b966e4 /sysdeps/unix | |
parent | ac49ecaf9de65708d8b76a9f025c8c6aa82b4707 (diff) | |
download | glibc-ca38dc17d85b09776a709c8ea7155c414df14073.tar glibc-ca38dc17d85b09776a709c8ea7155c414df14073.tar.gz glibc-ca38dc17d85b09776a709c8ea7155c414df14073.tar.bz2 glibc-ca38dc17d85b09776a709c8ea7155c414df14073.zip |
Avoid PLT references from __get_clockfreq on powerpc
Diffstat (limited to 'sysdeps/unix')
-rw-r--r-- | sysdeps/unix/sysv/linux/powerpc/get_clockfreq.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sysdeps/unix/sysv/linux/powerpc/get_clockfreq.c b/sysdeps/unix/sysv/linux/powerpc/get_clockfreq.c index d1e65a85ee..a863a27b32 100644 --- a/sysdeps/unix/sysv/linux/powerpc/get_clockfreq.c +++ b/sysdeps/unix/sysv/linux/powerpc/get_clockfreq.c @@ -1,5 +1,5 @@ /* Get frequency of the system processor. powerpc/Linux version. - Copyright (C) 2000, 2001, 2005 Free Software Foundation, Inc. + Copyright (C) 2000-2012 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -46,7 +46,7 @@ __get_clockfreq (void) && INTERNAL_SYSCALL_ERRNO (timebase_freq, err) == ENOSYS) #endif { - int fd = open ("/proc/cpuinfo", O_RDONLY); + int fd = __open ("/proc/cpuinfo", O_RDONLY); if (__builtin_expect (fd != -1, 1)) { @@ -58,7 +58,7 @@ __get_clockfreq (void) char buf[1024]; ssize_t n; - n = read (fd, buf, sizeof (buf)); + n = __read (fd, buf, sizeof (buf)); if (n == sizeof (buf)) { /* We are here because the 1st read returned exactly sizeof @@ -76,7 +76,7 @@ __get_clockfreq (void) while (n >= half_buf) { memcpy (buf, buf + half_buf, half_buf); - n = read (fd, buf + half_buf, half_buf); + n = __read (fd, buf + half_buf, half_buf); } if (n >= 0) n += half_buf; @@ -108,7 +108,7 @@ __get_clockfreq (void) } timebase_freq = result; } - close (fd); + __close (fd); } } |