tangled
alpha
login
or
join now
tjh.dev
/
kernel
Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1
fork
atom
overview
issues
pulls
pipelines
CRIS: Add new timerfd syscall entries.
Jesper Nilsson
18 years ago
7800029d
0b07aa6d
+9
-3
3 changed files
expand all
collapse all
unified
split
arch
cris
arch-v10
kernel
entry.S
arch-v32
kernel
entry.S
include
asm-cris
unistd.h
+3
-1
arch/cris/arch-v10/kernel/entry.S
···
924
924
.long sys_epoll_pwait
925
925
.long sys_utimensat /* 320 */
926
926
.long sys_signalfd
927
927
-
.long sys_ni_syscall
927
927
+
.long sys_timerfd_create
928
928
.long sys_eventfd
929
929
.long sys_fallocate
930
930
+
.long sys_timerfd_settime /* 325 */
931
931
+
.long sys_timerfd_gettime
930
932
931
933
/*
932
934
* NOTE!! This doesn't have to be exact - we just have
+3
-1
arch/cris/arch-v32/kernel/entry.S
···
847
847
.long sys_epoll_pwait
848
848
.long sys_utimensat /* 320 */
849
849
.long sys_signalfd
850
850
-
.long sys_timerfd
850
850
+
.long sys_timerfd_create
851
851
.long sys_eventfd
852
852
.long sys_fallocate
853
853
+
.long sys_timerfd_settime /* 325 */
854
854
+
.long sys_timerfd_gettime
853
855
854
856
/*
855
857
* NOTE!! This doesn't have to be exact - we just have
+3
-1
include/asm-cris/unistd.h
···
326
326
#define __NR_epoll_pwait 319
327
327
#define __NR_utimensat 320
328
328
#define __NR_signalfd 321
329
329
-
#define __NR_timerfd 322
329
329
+
#define __NR_timerfd_create 322
330
330
#define __NR_eventfd 323
331
331
#define __NR_fallocate 324
332
332
+
#define __NR_timerfd_settime 315
333
333
+
#define __NR_timerfd_gettime 316
332
334
333
335
#ifdef __KERNEL__
334
336