You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
372 B
18 lines
372 B
20 years ago
|
/* 32bit VDSOs mapped into user space. */
|
||
|
|
||
|
.section ".init.data","aw"
|
||
|
|
||
|
.globl syscall32_syscall
|
||
|
.globl syscall32_syscall_end
|
||
|
|
||
|
syscall32_syscall:
|
||
|
.incbin "arch/x86_64/ia32/vsyscall-syscall.so"
|
||
|
syscall32_syscall_end:
|
||
|
|
||
|
.globl syscall32_sysenter
|
||
|
.globl syscall32_sysenter_end
|
||
|
|
||
|
syscall32_sysenter:
|
||
|
.incbin "arch/x86_64/ia32/vsyscall-sysenter.so"
|
||
|
syscall32_sysenter_end:
|