Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
qemu
提交
dca1173c
Q
qemu
项目概览
openeuler
/
qemu
通知
10
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
Q
qemu
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
dca1173c
编写于
6月 09, 2013
作者:
A
Andreas Färber
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
bsd-user: Change thread_env to CPUState
Signed-off-by:
N
Andreas Färber
<
afaerber@suse.de
>
上级
a2247f8e
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
8 addition
and
6 deletion
+8
-6
bsd-user/elfload.c
bsd-user/elfload.c
+4
-2
bsd-user/main.c
bsd-user/main.c
+3
-3
bsd-user/qemu.h
bsd-user/qemu.h
+1
-1
未找到文件。
bsd-user/elfload.c
浏览文件 @
dca1173c
...
...
@@ -98,7 +98,7 @@ enum {
static
const
char
*
get_elf_platform
(
void
)
{
static
char
elf_platform
[]
=
"i386"
;
int
family
=
(
thread_env
->
cpuid_version
>>
8
)
&
0xff
;
int
family
=
object_property_get_int
(
OBJECT
(
thread_cpu
),
"family"
,
NULL
)
;
if
(
family
>
6
)
family
=
6
;
if
(
family
>=
3
)
...
...
@@ -110,7 +110,9 @@ static const char *get_elf_platform(void)
static
uint32_t
get_elf_hwcap
(
void
)
{
return
thread_env
->
features
[
FEAT_1_EDX
];
X86CPU
*
cpu
=
X86_CPU
(
thread_cpu
);
return
cpu
->
env
.
features
[
FEAT_1_EDX
];
}
#ifdef TARGET_X86_64
...
...
bsd-user/main.c
浏览文件 @
dca1173c
...
...
@@ -92,7 +92,7 @@ void fork_start(void)
void
fork_end
(
int
child
)
{
if
(
child
)
{
gdbserver_fork
(
thread_env
);
gdbserver_fork
(
(
CPUArchState
*
)
thread_cpu
->
env_ptr
);
}
}
...
...
@@ -713,7 +713,7 @@ static void usage(void)
exit
(
1
);
}
THREAD
CPU
ArchState
*
thread_env
;
THREAD
CPU
State
*
thread_cpu
;
/* Assumes contents are already zeroed. */
void
init_task_state
(
TaskState
*
ts
)
...
...
@@ -915,7 +915,7 @@ int main(int argc, char **argv)
#if defined(TARGET_SPARC) || defined(TARGET_PPC)
cpu_reset
(
ENV_GET_CPU
(
env
));
#endif
thread_
env
=
env
;
thread_
cpu
=
ENV_GET_CPU
(
env
)
;
if
(
getenv
(
"QEMU_STRACE"
))
{
do_strace
=
1
;
...
...
bsd-user/qemu.h
浏览文件 @
dca1173c
...
...
@@ -139,7 +139,7 @@ abi_long do_openbsd_syscall(void *cpu_env, int num, abi_long arg1,
abi_long
arg2
,
abi_long
arg3
,
abi_long
arg4
,
abi_long
arg5
,
abi_long
arg6
);
void
gemu_log
(
const
char
*
fmt
,
...)
GCC_FMT_ATTR
(
1
,
2
);
extern
THREAD
CPU
ArchState
*
thread_env
;
extern
THREAD
CPU
State
*
thread_cpu
;
void
cpu_loop
(
CPUArchState
*
env
);
char
*
target_strerror
(
int
err
);
int
get_osversion
(
void
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录