summaryrefslogtreecommitdiffstats
path: root/usr/klibc/arch/x86_64/sigreturn.S
blob: 46a5a0ba9863d77a01d9449013c752691b33765c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 * arch/x86_64/sigreturn.S
 */

#include <asm/unistd.h>

	.text
	.align	4
	.globl	__sigreturn
	.type	__sigreturn,@function
__sigreturn:
	movl	$__NR_rt_sigreturn,%eax
	syscall

	.size	__sigreturn,.-__sigreturn