https://github.com/torvalds/linux
Raw File
Tip revision: 49914084e797530d9baaf51df9eda77babc98fa8 authored by Linus Torvalds on 24 January 2008, 22:58:37 UTC
Linux 2.6.24
Tip revision: 4991408
syscall32_syscall.S
/* 32bit VDSOs mapped into user space. */

	.section ".init.data","aw"

	.globl syscall32_syscall
	.globl syscall32_syscall_end

syscall32_syscall:
	.incbin "arch/x86/ia32/vsyscall-syscall.so"
syscall32_syscall_end:

	.globl syscall32_sysenter
	.globl syscall32_sysenter_end

syscall32_sysenter:
	.incbin "arch/x86/ia32/vsyscall-sysenter.so"
syscall32_sysenter_end:
back to top