Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
353b28ba
cloud-kernel
项目概览
openanolis
/
cloud-kernel
大约 1 年 前同步成功
通知
158
Star
36
Fork
7
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
10
列表
看板
标记
里程碑
合并请求
2
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
cloud-kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
10
Issue
10
列表
看板
标记
里程碑
合并请求
2
合并请求
2
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
353b28ba
编写于
5月 21, 2006
作者:
D
David S. Miller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[SPARC]: Add robust futex syscall entries.
Signed-off-by:
N
David S. Miller
<
davem@davemloft.net
>
上级
9a2a9bb2
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
17 addition
and
10 deletion
+17
-10
arch/sparc/kernel/systbls.S
arch/sparc/kernel/systbls.S
+2
-1
arch/sparc64/kernel/systbls.S
arch/sparc64/kernel/systbls.S
+5
-3
include/asm-sparc/unistd.h
include/asm-sparc/unistd.h
+5
-3
include/asm-sparc64/unistd.h
include/asm-sparc64/unistd.h
+5
-3
未找到文件。
arch/sparc/kernel/systbls.S
浏览文件 @
353b28ba
...
...
@@ -79,6 +79,7 @@ sys_call_table:
/*
285
*/
.
long
sys_mkdirat
,
sys_mknodat
,
sys_fchownat
,
sys_futimesat
,
sys_fstatat64
/*
290
*/
.
long
sys_unlinkat
,
sys_renameat
,
sys_linkat
,
sys_symlinkat
,
sys_readlinkat
/*
295
*/
.
long
sys_fchmodat
,
sys_faccessat
,
sys_pselect6
,
sys_ppoll
,
sys_unshare
/*
300
*/
.
long
sys_set_robust_list
,
sys_get_robust_list
#ifdef CONFIG_SUNOS_EMUL
/
*
Now
the
SunOS
syscall
table
.
*/
...
...
@@ -190,6 +191,6 @@ sunos_sys_table:
/*
290
*/
.
long
sunos_nosys
,
sunos_nosys
,
sunos_nosys
.
long
sunos_nosys
,
sunos_nosys
,
sunos_nosys
.
long
sunos_nosys
,
sunos_nosys
,
sunos_nosys
.
long
sunos_nosys
.
long
sunos_nosys
,
sunos_nosys
,
sunos_nosys
#endif
arch/sparc64/kernel/systbls.S
浏览文件 @
353b28ba
...
...
@@ -78,8 +78,9 @@ sys_call_table32:
.
word
compat_sys_mq_timedsend
,
compat_sys_mq_timedreceive
,
compat_sys_mq_notify
,
compat_sys_mq_getsetattr
,
compat_sys_waitid
/*
280
*/
.
word
sys32_tee
,
sys_add_key
,
sys_request_key
,
sys_keyctl
,
compat_sys_openat
.
word
sys_mkdirat
,
sys_mknodat
,
sys_fchownat
,
compat_sys_futimesat
,
compat_sys_fstatat64
/*
2
85
*/
.
word
sys_unlinkat
,
sys_renameat
,
sys_linkat
,
sys_symlinkat
,
sys_readlinkat
/*
2
90
*/
.
word
sys_unlinkat
,
sys_renameat
,
sys_linkat
,
sys_symlinkat
,
sys_readlinkat
.
word
sys_fchmodat
,
sys_faccessat
,
compat_sys_pselect6
,
compat_sys_ppoll
,
sys_unshare
/*
300
*/
.
word
compat_sys_set_robust_list
,
compat_sys_get_robust_list
#endif /* CONFIG_COMPAT */
...
...
@@ -147,8 +148,9 @@ sys_call_table:
.
word
sys_mq_timedsend
,
sys_mq_timedreceive
,
sys_mq_notify
,
sys_mq_getsetattr
,
sys_waitid
/*
280
*/
.
word
sys_tee
,
sys_add_key
,
sys_request_key
,
sys_keyctl
,
sys_openat
.
word
sys_mkdirat
,
sys_mknodat
,
sys_fchownat
,
sys_futimesat
,
sys_fstatat64
/*
2
85
*/
.
word
sys_unlinkat
,
sys_renameat
,
sys_linkat
,
sys_symlinkat
,
sys_readlinkat
/*
2
90
*/
.
word
sys_unlinkat
,
sys_renameat
,
sys_linkat
,
sys_symlinkat
,
sys_readlinkat
.
word
sys_fchmodat
,
sys_faccessat
,
sys_pselect6
,
sys_ppoll
,
sys_unshare
/*
300
*/
.
word
sys_set_robust_list
,
sys_get_robust_list
#if defined(CONFIG_SUNOS_EMUL) || defined(CONFIG_SOLARIS_EMUL) || \
defined
(
CONFIG_SOLARIS_EMUL_MODULE
)
...
...
@@ -261,5 +263,5 @@ sunos_sys_table:
/*
290
*/
.
word
sunos_nosys
,
sunos_nosys
,
sunos_nosys
.
word
sunos_nosys
,
sunos_nosys
,
sunos_nosys
.
word
sunos_nosys
,
sunos_nosys
,
sunos_nosys
.
word
sunos_nosys
.
word
sunos_nosys
,
sunos_nosys
,
sunos_nosys
#endif
include/asm-sparc/unistd.h
浏览文件 @
353b28ba
...
...
@@ -316,11 +316,13 @@
#define __NR_pselect6 297
#define __NR_ppoll 298
#define __NR_unshare 299
#define __NR_set_robust_list 300
#define __NR_get_robust_list 301
/* WARNING: You MAY NOT add syscall numbers larger than
299
, since
/* WARNING: You MAY NOT add syscall numbers larger than
301
, since
* all of the syscall tables in the Sparc kernel are
* sized to have
299
entries (starting at zero). Therefore
* find a free slot in the 0-
299
range.
* sized to have
301
entries (starting at zero). Therefore
* find a free slot in the 0-
301
range.
*/
#define _syscall0(type,name) \
...
...
include/asm-sparc64/unistd.h
浏览文件 @
353b28ba
...
...
@@ -318,11 +318,13 @@
#define __NR_pselect6 297
#define __NR_ppoll 298
#define __NR_unshare 299
#define __NR_set_robust_list 300
#define __NR_get_robust_list 301
/* WARNING: You MAY NOT add syscall numbers larger than
299
, since
/* WARNING: You MAY NOT add syscall numbers larger than
301
, since
* all of the syscall tables in the Sparc kernel are
* sized to have
299
entries (starting at zero). Therefore
* find a free slot in the 0-
299
range.
* sized to have
301
entries (starting at zero). Therefore
* find a free slot in the 0-
301
range.
*/
#define _syscall0(type,name) \
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录