From 557856bdd9b9d8f8a4d767034df58831a96c1a93 Mon Sep 17 00:00:00 2001 From: Jeff Johnston Date: Fri, 26 Apr 2002 23:21:29 +0000 Subject: 2002-04-26 Jeff Johnston * libc/sys/linux/Makefile.am: Add io64.c. * libc/sys/linux/Makefile.in: Regenerated. * libc/sys/linux/io.c(mkfifo, fsync, fdatasync): Added syscalls. * libc/sys/linux/signal.c (sigwaitinfo, sigtimedwait): Ditto. * libc/sys/linux/io64.c: New file. --- newlib/libc/sys/linux/io64.c | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 newlib/libc/sys/linux/io64.c (limited to 'newlib/libc/sys/linux/io64.c') diff --git a/newlib/libc/sys/linux/io64.c b/newlib/libc/sys/linux/io64.c new file mode 100644 index 000000000..c18854bf7 --- /dev/null +++ b/newlib/libc/sys/linux/io64.c @@ -0,0 +1,41 @@ +/* libc/sys/linux/io64.c - large file input/output system calls */ + +/* Copyright 2002, Red Hat Inc. */ + + +#define __KERNEL_PROTOTYPES + +#include +#include +#include +#include +#include +#include +#include +#include + +_syscall2(int,stat64,const char *,name,struct stat64 *,st) + +static _syscall5(void,_llseek,int,fd,off_t,hi,off_t,lo,loff_t *,pos,int,whence) + +loff_t lseek64(int fd, loff_t offset, int whence) +{ + loff_t pos; + _llseek(fd, offset >> 32, offset & 0xffffffff, &pos, whence); + return pos; +} + +int open64(const char *path, int oflag, ...) +{ + mode_t mode = 0; + if (oflag & O_CREAT) + { + va_list list; + va_start(list, oflag); + mode = va_arg(list, int); + va_end(list); + } + return open(path, oflag | O_LARGEFILE, mode); +} + + -- cgit v1.2.3