diff mbox

[pciutils] pread.h: Remove support for libc5

Message ID 20150329085931.GA8259@euler (mailing list archive)
State New, archived
Delegated to: Bjorn Helgaas
Headers show

Commit Message

Felix Janda March 29, 2015, 8:59 a.m. UTC
The support code for libc5 breaks building on linux i386 with
other libcs that don't define __GLIBC__.
---
 lib/pread.h | 9 ---------
 1 file changed, 9 deletions(-)

Comments

Martin Mareš April 9, 2015, 2:37 p.m. UTC | #1
Hi!

> The support code for libc5 breaks building on linux i386 with
> other libcs that don't define __GLIBC__.

Thanks, applied.  I will release pciutils-3.3.1 in a couple of minutes.

				Have a nice fortnight
diff mbox

Patch

diff --git a/lib/pread.h b/lib/pread.h
index 0e64326..3db90e3 100644
--- a/lib/pread.h
+++ b/lib/pread.h
@@ -30,15 +30,6 @@  static int pread(unsigned int fd, void *buf, size_t size, loff_t where)
 static int pwrite(unsigned int fd, void *buf, size_t size, loff_t where)
 { return syscall(SYS_pwrite, fd, buf, size, where); }
 
-#elif defined(i386)
-/* old libc on i386 -> call syscalls directly the old way */
-#include <asm/unistd.h>
-static _syscall5(int, pread, unsigned int, fd, void *, buf, size_t, size, u32, where_lo, u32, where_hi);
-static _syscall5(int, pwrite, unsigned int, fd, void *, buf, size_t, size, u32, where_lo, u32, where_hi);
-static int do_read(struct pci_dev *d UNUSED, int fd, void *buf, size_t size, int where) { return pread(fd, buf, size, where, 0); }
-static int do_write(struct pci_dev *d UNUSED, int fd, void *buf, size_t size, int where) { return pwrite(fd, buf, size, where, 0); }
-#define PCI_HAVE_DO_READ
-
 #else
 /* In all other cases we use lseek/read/write instead to be safe */
 #define make_rw_glue(op) \