open.s
来自「klibc精简化的c程序库」· S 代码 · 共 30 行
S
30 行
/* * arch/i386/open.S * * Handle the open() system call - oddball due to the varadic * prototype, which forces the use of the cdecl calling convention, * and the need for O_LARGEFILE. */#include <asm/unistd.h>/* <asm/fcntl.h>, despite the name, isn't assembly-safe */#define O_LARGEFILE 0100000 .globl open .type open,@functionopen:#ifdef _REGPARM movl 4(%esp),%eax movl 8(%esp),%edx movl 12(%esp),%ecx orl $O_LARGEFILE,%edx#else orl $O_LARGEFILE,8(%esp)#endif pushl $__NR_open jmp __syscall_common .size open,.-open
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?