Welcome to mirror list, hosted at ThFree Co, Russian Federation.

io64.c « linux « sys « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f54c40597f6b7e8e4c012031a9dd3734e4a7f226 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/* libc/sys/linux/io64.c - large file input/output system calls */

/* Copyright 2002, Red Hat Inc. */


#define __KERNEL_PROTOTYPES

#include <stdarg.h>
#include <unistd.h>
#include <fcntl.h>
#include <sys/types.h>
#include <sys/uio.h>
#include <sys/stat.h>
#include <sys/ioctl.h>
#include <machine/syscall.h>

_syscall2(int,fstat64,int,fd,struct stat64 *,st)
_syscall2(int,lstat64,const char *,name,struct stat64 *,st)
_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 __libc_lseek64(int fd, loff_t offset, int whence)
{
  loff_t pos;
  __libc__llseek(fd, offset >> 32, offset & 0xffffffff, &pos, whence);
  return pos;
}
weak_alias(__libc_lseek64,lseek64);

int __libc_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 __libc_open(path, oflag | O_LARGEFILE, mode);
}
weak_alias(__libc_open64,open64);
weak_alias(__libc_open64,__open64);