search for: a40cc02

Displaying 1 result from an estimated 1 matches for "a40cc02".

2014 Jan 25
0
[klibc:master] i386: use the vdso for system calls on i386
...| 2 +- usr/klibc/arch/i386/syscall.S | 16 +++++++++++++++- usr/klibc/arch/i386/vfork.S | 7 +++++-- usr/klibc/libc_init.c | 9 +++++++++ 4 files changed, 30 insertions(+), 4 deletions(-) diff --git a/usr/klibc/arch/i386/socketcall.S b/usr/klibc/arch/i386/socketcall.S index a40cc02..44e2004 100644 --- a/usr/klibc/arch/i386/socketcall.S +++ b/usr/klibc/arch/i386/socketcall.S @@ -32,7 +32,7 @@ __socketcall_common: #endif movl $__NR_socketcall,%eax - int $0x80 + call *__syscall_entry #ifdef _REGPARM addl $6*4, %esp diff --git a/usr/klibc/arch/i386/syscall.S b/usr/klibc...