finish moving 32-bit-specific junk out of source files.

This commit is contained in:
Rich Felker 2011-02-15 04:12:19 -05:00
parent a5bf06c035
commit cfe373146d
12 changed files with 34 additions and 21 deletions

View File

@ -480,6 +480,29 @@ static inline long syscall6(long n, long a1, long a2, long a3, long a4, long a5,
#define __NR_setfsgid __NR_setfsgid32 #define __NR_setfsgid __NR_setfsgid32
/* fixup legacy 32-bit-vs-lfs64 junk */
#undef __NR_getdents
#undef __NR_ftruncate
#undef __NR_truncate
#undef __NR_stat
#undef __NR_fstat
#undef __NR_lstat
#undef __NR_statfs
#undef __NR_fstatfs
#define __NR_getdents __NR_getdents64
#define __NR_ftruncate __NR_ftruncate64
#define __NR_truncate __NR_truncate64
#define __NR_stat __NR_stat64
#define __NR_fstat __NR_fstat64
#define __NR_lstat __NR_lstat64
#define __NR_statfs __NR_statfs64
#define __NR_fstatfs __NR_fstatfs64
#define __NR_fstatat __NR_fstatat64
#define __NR_pread __NR_pread64
#define __NR_pwrite __NR_pwrite64
#undef O_LARGEFILE #undef O_LARGEFILE
#define O_LARGEFILE 0100000 #define O_LARGEFILE 0100000

View File

@ -4,7 +4,7 @@
int __getdents(int fd, struct dirent *buf, size_t len) int __getdents(int fd, struct dirent *buf, size_t len)
{ {
return syscall3(__NR_getdents64, fd, (long)buf, len); return syscall3(__NR_getdents, fd, (long)buf, len);
} }
weak_alias(__getdents, getdents); weak_alias(__getdents, getdents);

View File

@ -4,7 +4,7 @@
int fstat(int fd, struct stat *buf) int fstat(int fd, struct stat *buf)
{ {
return syscall2(__NR_fstat64, fd, (long)buf); return syscall2(__NR_fstat, fd, (long)buf);
} }
LFS64(fstat); LFS64(fstat);

View File

@ -4,7 +4,7 @@
int fstatat(int fd, const char *path, struct stat *buf, int flag) int fstatat(int fd, const char *path, struct stat *buf, int flag)
{ {
return syscall4(__NR_fstatat64, fd, (long)path, (long)buf, flag); return syscall4(__NR_fstatat, fd, (long)path, (long)buf, flag);
} }
LFS64(fstatat); LFS64(fstatat);

View File

@ -4,7 +4,7 @@
int fstatvfs(int fd, struct statvfs *buf) int fstatvfs(int fd, struct statvfs *buf)
{ {
return syscall2(__NR_fstatfs64, fd, (long)buf); return syscall2(__NR_fstatfs, fd, (long)buf);
} }
weak_alias(fstatvfs, fstatfs); weak_alias(fstatvfs, fstatfs);

View File

@ -4,7 +4,7 @@
int lstat(const char *path, struct stat *buf) int lstat(const char *path, struct stat *buf)
{ {
return syscall2(__NR_lstat64, (long)path, (long)buf); return syscall2(__NR_lstat, (long)path, (long)buf);
} }
LFS64(lstat); LFS64(lstat);

View File

@ -4,7 +4,7 @@
int stat(const char *path, struct stat *buf) int stat(const char *path, struct stat *buf)
{ {
return syscall2(__NR_stat64, (long)path, (long)buf); return syscall2(__NR_stat, (long)path, (long)buf);
} }
LFS64(stat); LFS64(stat);

View File

@ -4,7 +4,7 @@
int statvfs(const char *path, struct statvfs *buf) int statvfs(const char *path, struct statvfs *buf)
{ {
return syscall2(__NR_statfs64, (long)path, (long)buf); return syscall2(__NR_statfs, (long)path, (long)buf);
} }
weak_alias(statvfs, statfs); weak_alias(statvfs, statfs);

View File

@ -4,12 +4,7 @@
int ftruncate(int fd, off_t length) int ftruncate(int fd, off_t length)
{ {
if (sizeof(long) == 8) return syscall3(__NR_ftruncate, fd, SYSCALL_LL(length));
return syscall2(__NR_ftruncate, fd, length);
else {
union { long long ll; long l[2]; } u = { length };
return syscall3(__NR_ftruncate64, fd, u.l[0], u.l[1]);
}
} }
LFS64(ftruncate); LFS64(ftruncate);

View File

@ -6,7 +6,7 @@ ssize_t pread(int fd, void *buf, size_t size, off_t ofs)
{ {
ssize_t r; ssize_t r;
CANCELPT_BEGIN; CANCELPT_BEGIN;
r = syscall5(__NR_pread64, fd, (long)buf, size, SYSCALL_LL(ofs)); r = syscall5(__NR_pread, fd, (long)buf, size, SYSCALL_LL(ofs));
CANCELPT_END; CANCELPT_END;
return r; return r;
} }

View File

@ -6,7 +6,7 @@ ssize_t pwrite(int fd, const void *buf, size_t size, off_t ofs)
{ {
ssize_t r; ssize_t r;
CANCELPT_BEGIN; CANCELPT_BEGIN;
r = syscall5(__NR_pwrite64, fd, (long)buf, size, SYSCALL_LL(ofs)); r = syscall5(__NR_pwrite, fd, (long)buf, size, SYSCALL_LL(ofs));
CANCELPT_END; CANCELPT_END;
return r; return r;
} }

View File

@ -4,12 +4,7 @@
int truncate(const char *path, off_t length) int truncate(const char *path, off_t length)
{ {
if (sizeof(long) == 8) return syscall3(__NR_truncate, (long)path, SYSCALL_LL(length));
return syscall2(__NR_truncate, (long)path, length);
else {
union { long long ll; long l[2]; } u = { length };
return syscall3(__NR_truncate64, (long)path, u.l[0], u.l[1]);
}
} }
LFS64(truncate); LFS64(truncate);