Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
9ca18dba
Commit
9ca18dba
authored
Nov 15, 2002
by
Jeff Dike
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated to 2.5.45.
parent
7f555b11
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
2 deletions
+10
-2
arch/um/kernel/sys_call_table.c
arch/um/kernel/sys_call_table.c
+7
-1
arch/um/os-Linux/Makefile
arch/um/os-Linux/Makefile
+3
-1
No files found.
arch/um/kernel/sys_call_table.c
View file @
9ca18dba
...
...
@@ -230,6 +230,9 @@ extern syscall_handler_t sys_io_submit;
extern
syscall_handler_t
sys_io_cancel
;
extern
syscall_handler_t
sys_exit_group
;
extern
syscall_handler_t
sys_lookup_dcookie
;
extern
syscall_handler_t
sys_epoll_create
;
extern
syscall_handler_t
sys_epoll_ctl
;
extern
syscall_handler_t
sys_epoll_wait
;
#if CONFIG_NFSD
#define NFSSERVCTL sys_nfsserctl
...
...
@@ -241,7 +244,7 @@ extern syscall_handler_t um_mount;
extern
syscall_handler_t
um_time
;
extern
syscall_handler_t
um_stime
;
#define LAST_GENERIC_SYSCALL __NR_
lookup_dcookie
#define LAST_GENERIC_SYSCALL __NR_
sys_epoll_wait
#if LAST_GENERIC_SYSCALL > LAST_ARCH_SYSCALL
#define LAST_SYSCALL LAST_GENERIC_SYSCALL
...
...
@@ -481,6 +484,9 @@ syscall_handler_t *sys_call_table[] = {
[
__NR_free_hugepages
]
=
sys_ni_syscall
,
[
__NR_exit_group
]
=
sys_exit_group
,
[
__NR_lookup_dcookie
]
=
sys_lookup_dcookie
,
[
__NR_sys_epoll_create
]
=
sys_epoll_create
,
[
__NR_sys_epoll_ctl
]
=
sys_epoll_ctl
,
[
__NR_sys_epoll_wait
]
=
sys_epoll_wait
,
ARCH_SYSCALLS
[
LAST_SYSCALL
+
1
...
NR_syscalls
]
=
...
...
arch/um/os-Linux/Makefile
View file @
9ca18dba
...
...
@@ -5,9 +5,11 @@
obj-y
=
file.o process.o tty.o
USER_OBJS
:=
$(
foreach
file,
$
(
obj-y
)
,arch/um/os-Linux/
$(file)
)
include
$(TOPDIR)/Rules.make
$(
obj-y
)
:
%.o: %.c
$(
USER_OBJS
)
:
%.o: %.c
$(CC)
$
(
CFLAGS_
$@
)
$(USER_CFLAGS)
-c
-o
$@
$<
clean
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment