aboutsummaryrefslogtreecommitdiffstats
path: root/extras/mini-os/lib
diff options
context:
space:
mode:
authorKeir Fraser <keir.fraser@citrix.com>2008-08-08 10:45:30 +0100
committerKeir Fraser <keir.fraser@citrix.com>2008-08-08 10:45:30 +0100
commit168d8692c8d5e2530f2064fd137ee4c55e504591 (patch)
tree19a4698498f116df335debb0fa78436ffb3ee0b5 /extras/mini-os/lib
parent6c818dce46287023be51055e353b5fa3628ef926 (diff)
downloadxen-168d8692c8d5e2530f2064fd137ee4c55e504591.tar.gz
xen-168d8692c8d5e2530f2064fd137ee4c55e504591.tar.bz2
xen-168d8692c8d5e2530f2064fd137ee4c55e504591.zip
stubdom: turn off_t 64bit on x86
We can decide to make off_t 64bit instead of implementing the LFS tricks. Name corresponding functions foo64 to permit simple caml programs linking. Signed-off-by: Samuel Thibault <samuel.thibault@eu.citrix.com>
Diffstat (limited to 'extras/mini-os/lib')
-rw-r--r--extras/mini-os/lib/sys.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/extras/mini-os/lib/sys.c b/extras/mini-os/lib/sys.c
index 457bde3c8d..7b6de7e6d7 100644
--- a/extras/mini-os/lib/sys.c
+++ b/extras/mini-os/lib/sys.c
@@ -204,9 +204,6 @@ int open(const char *pathname, int flags, ...)
files[fd].file.offset = 0;
return fd;
}
-#if defined(__x86_64__) || defined(__ia64__)
-__typeof__(open) open64 __attribute__((__alias__("open")));
-#endif
int isatty(int fd)
{
@@ -347,9 +344,6 @@ off_t lseek(int fd, off_t offset, int whence)
}
return files[fd].file.offset;
}
-#if defined(__x86_64__) || defined(__ia64__)
-__typeof__(lseek) lseek64 __attribute__((__alias__("lseek")));
-#endif
int fsync(int fd) {
switch (files[fd].type) {
@@ -1120,9 +1114,6 @@ void *mmap(void *start, size_t length, int prot, int flags, int fd, off_t offset
return map_frames_ex(&zero, n, 0, 0, 1, DOMID_SELF, 0, 0);
} else ASSERT(0);
}
-#if defined(__x86_64__) || defined(__ia64__)
-__typeof__(mmap) mmap64 __attribute__((__alias__("mmap")));
-#endif
int munmap(void *start, size_t length)
{