提交 1a28c6ea 编写于 作者: R Rich Felker

fix broken lseek on x32 (x86_64/ILP32) with offsets larger than LONG_MAX

this is analogous to commit 918c5fa0
which fixed the corresponding issue for mips n32.
上级 918c5fa0
#include <unistd.h>
#include "syscall.h"
off_t __lseek(int fd, off_t offset, int whence)
{
off_t ret;
__asm__ __volatile__ ("syscall"
: "=a"(ret)
: "a"(SYS_lseek), "D"(fd), "S"(offset), "d"(whence)
: "rcx", "r11", "memory");
return ret < 0 ? __syscall_ret(ret) : ret;
}
weak_alias(__lseek, lseek);
weak_alias(__lseek, lseek64);
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册