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
Kirill Smelkov
linux
Commits
268a7aa4
Commit
268a7aa4
authored
Nov 16, 2002
by
Jeff Dike
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updates to 2.5.47.
parent
f8a42483
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
14 additions
and
2 deletions
+14
-2
arch/um/Makefile-i386
arch/um/Makefile-i386
+3
-0
arch/um/kernel/sys_call_table.c
arch/um/kernel/sys_call_table.c
+5
-1
arch/um/uml.lds.S
arch/um/uml.lds.S
+5
-0
include/asm-um/unistd.h
include/asm-um/unistd.h
+1
-1
No files found.
arch/um/Makefile-i386
View file @
268a7aa4
...
...
@@ -8,6 +8,9 @@ CFLAGS += -U__$(SUBARCH)__ -U$(SUBARCH)
ELF_ARCH = $(SUBARCH)
ELF_FORMAT = elf32-$(SUBARCH)
OBJCOPYFLAGS := -O binary -R .note -R .comment -S
LDFLAGS_BLOB := --format binary --oformat elf32-i386
SYS_DIR := $(ARCH_DIR)/include/sysdep-i386
SYS_UTIL_DIR := $(ARCH_DIR)/sys-i386/util
...
...
arch/um/kernel/sys_call_table.c
View file @
268a7aa4
...
...
@@ -85,6 +85,7 @@ extern syscall_handler_t sys_setgroups16;
extern
syscall_handler_t
sys_symlink
;
extern
syscall_handler_t
sys_lstat
;
extern
syscall_handler_t
sys_readlink
;
extern
syscall_handler_t
sys_swapon
;
extern
syscall_handler_t
sys_uselib
;
extern
syscall_handler_t
sys_reboot
;
extern
syscall_handler_t
old_readdir
;
...
...
@@ -111,6 +112,7 @@ extern syscall_handler_t sys_ni_syscall;
extern
syscall_handler_t
sys_vhangup
;
extern
syscall_handler_t
sys_ni_syscall
;
extern
syscall_handler_t
sys_ni_syscall
;
extern
syscall_handler_t
sys_swapoff
;
extern
syscall_handler_t
sys_sysinfo
;
extern
syscall_handler_t
sys_ipc
;
extern
syscall_handler_t
sys_fsync
;
...
...
@@ -233,6 +235,7 @@ 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
;
extern
syscall_handler_t
sys_remap_file_pages
;
#if CONFIG_NFSD
#define NFSSERVCTL sys_nfsserctl
...
...
@@ -244,7 +247,7 @@ extern syscall_handler_t um_mount;
extern
syscall_handler_t
um_time
;
extern
syscall_handler_t
um_stime
;
#define LAST_GENERIC_SYSCALL __NR_
sys_epoll_wait
#define LAST_GENERIC_SYSCALL __NR_
remap_file_pages
#if LAST_GENERIC_SYSCALL > LAST_ARCH_SYSCALL
#define LAST_SYSCALL LAST_GENERIC_SYSCALL
...
...
@@ -487,6 +490,7 @@ syscall_handler_t *sys_call_table[] = {
[
__NR_sys_epoll_create
]
=
sys_epoll_create
,
[
__NR_sys_epoll_ctl
]
=
sys_epoll_ctl
,
[
__NR_sys_epoll_wait
]
=
sys_epoll_wait
,
[
__NR_remap_file_pages
]
=
sys_remap_file_pages
,
ARCH_SYSCALLS
[
LAST_SYSCALL
+
1
...
NR_syscalls
]
=
...
...
arch/um/uml.lds.S
View file @
268a7aa4
...
...
@@ -92,6 +92,11 @@ SECTIONS
.
uml.exitcall
:
{
*(
.
uml
.
exitcall
.
exit
)
}
__uml_exitcall_end
=
.
;
.
=
ALIGN
(
4096
)
;
__initramfs_start
=
.
;
.
init.ramfs
:
{
*(
.
init
.
ramfs
)
}
__initramfs_end
=
.
;
.
data.init
:
{
*(
.
data
.
init
)
}
.
data
:
{
...
...
include/asm-um/unistd.h
View file @
268a7aa4
...
...
@@ -23,7 +23,7 @@ extern long sys_select(int n, fd_set *inp, fd_set *outp, fd_set *exp,
struct
timeval
*
tvp
);
extern
long
sys_lseek
(
unsigned
int
fildes
,
unsigned
long
offset
,
int
whence
);
extern
long
sys_read
(
unsigned
int
fildes
,
char
*
buf
,
int
len
);
extern
long
sys_write
(
unsigned
int
fildes
,
char
*
buf
,
in
t
len
);
extern
long
sys_write
(
int
fildes
,
const
char
*
buf
,
size_
t
len
);
#ifdef __KERNEL_SYSCALLS__
...
...
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