Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit bbfd2bf9 authored by Haavard Skinnemoen's avatar Haavard Skinnemoen
Browse files

AVR32: Wire up sys_epoll_pwait

parent 168c8fa3
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -100,3 +100,12 @@ __sys_splice:
	rcall	sys_splice
	sub	sp, -4
	popm	pc

	.global	__sys_epoll_pwait
	.type	__sys_epoll_pwait,@function
__sys_epoll_pwait:
	pushm	lr
	st.w	--sp, ARG6
	rcall	sys_epoll_pwait
	sub	sp, -4
	popm	pc
+1 −0
Original line number Diff line number Diff line
@@ -286,4 +286,5 @@ sys_call_table:
	.long	sys_sync_file_range
	.long	sys_tee
	.long	sys_vmsplice
	.long	__sys_epoll_pwait	/* 265 */
	.long	sys_ni_syscall		/* r8 is saturated at nr_syscalls */
+2 −1
Original line number Diff line number Diff line
@@ -280,9 +280,10 @@
#define __NR_sync_file_range	262
#define __NR_tee		263
#define __NR_vmsplice		264
#define __NR_epoll_pwait	265

#ifdef __KERNEL__
#define NR_syscalls		265
#define NR_syscalls		266


#define __ARCH_WANT_IPC_PARSE_VERSION