Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
raspberrypi-kernel
提交
1f02ab4a
R
raspberrypi-kernel
项目概览
openeuler
/
raspberrypi-kernel
通知
13
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
R
raspberrypi-kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
1f02ab4a
编写于
9月 21, 2012
作者:
A
Al Viro
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
um: switch to generic kernel_thread()
Signed-off-by:
N
Al Viro
<
viro@zeniv.linux.org.uk
>
上级
6783eaa2
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
4 addition
and
16 deletion
+4
-16
arch/um/include/asm/processor-generic.h
arch/um/include/asm/processor-generic.h
+0
-2
arch/um/kernel/process.c
arch/um/kernel/process.c
+3
-14
arch/x86/um/Kconfig
arch/x86/um/Kconfig
+1
-0
未找到文件。
arch/um/include/asm/processor-generic.h
浏览文件 @
1f02ab4a
...
...
@@ -63,8 +63,6 @@ static inline void release_thread(struct task_struct *task)
{
}
extern
int
kernel_thread
(
int
(
*
fn
)(
void
*
),
void
*
arg
,
unsigned
long
flags
);
extern
unsigned
long
thread_saved_pc
(
struct
task_struct
*
t
);
static
inline
void
mm_copy_segments
(
struct
mm_struct
*
from_mm
,
...
...
arch/um/kernel/process.c
浏览文件 @
1f02ab4a
...
...
@@ -69,18 +69,6 @@ unsigned long alloc_stack(int order, int atomic)
return
page
;
}
int
kernel_thread
(
int
(
*
fn
)(
void
*
),
void
*
arg
,
unsigned
long
flags
)
{
int
pid
;
current
->
thread
.
request
.
u
.
thread
.
proc
=
fn
;
current
->
thread
.
request
.
u
.
thread
.
arg
=
arg
;
pid
=
do_fork
(
CLONE_VM
|
CLONE_UNTRACED
|
flags
,
0
,
&
current
->
thread
.
regs
,
0
,
NULL
,
NULL
);
return
pid
;
}
EXPORT_SYMBOL
(
kernel_thread
);
static
inline
void
set_current
(
struct
task_struct
*
task
)
{
cpu_tasks
[
task_thread_info
(
task
)
->
cpu
]
=
((
struct
cpu_task
)
...
...
@@ -177,7 +165,7 @@ void fork_handler(void)
}
int
copy_thread
(
unsigned
long
clone_flags
,
unsigned
long
sp
,
unsigned
long
stack_top
,
struct
task_struct
*
p
,
unsigned
long
arg
,
struct
task_struct
*
p
,
struct
pt_regs
*
regs
)
{
void
(
*
handler
)(
void
);
...
...
@@ -198,7 +186,8 @@ int copy_thread(unsigned long clone_flags, unsigned long sp,
arch_copy_thread
(
&
current
->
thread
.
arch
,
&
p
->
thread
.
arch
);
}
else
{
get_safe_registers
(
p
->
thread
.
regs
.
regs
.
gp
,
p
->
thread
.
regs
.
regs
.
fp
);
p
->
thread
.
request
.
u
.
thread
=
current
->
thread
.
request
.
u
.
thread
;
p
->
thread
.
request
.
u
.
thread
.
proc
=
(
int
(
*
)(
void
*
))
sp
;
p
->
thread
.
request
.
u
.
thread
.
arg
=
(
void
*
)
arg
;
handler
=
new_thread_handler
;
}
...
...
arch/x86/um/Kconfig
浏览文件 @
1f02ab4a
...
...
@@ -13,6 +13,7 @@ endmenu
config UML_X86
def_bool y
select GENERIC_FIND_FIRST_BIT
select GENERIC_KERNEL_THREAD
config 64BIT
bool "64-bit kernel" if SUBARCH = "x86"
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录