https://github.com/torvalds/linux
Raw File
Tip revision: cbd9c883696da72b2b1f03f909dbacc04bbf8b58 authored by Linus Torvalds on 16 January 2008, 04:22:48 UTC
Linux 2.6.24-rc8
Tip revision: cbd9c88
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