Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
qemu
提交
f5c121b8
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,发现更多精彩内容 >>
提交
f5c121b8
编写于
5月 03, 2012
作者:
A
Andreas Färber
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
cpu: Move halt_cond to CPUState
Signed-off-by:
N
Andreas Färber
<
afaerber@suse.de
>
上级
a1fcaa73
变更
3
显示空白变更内容
内联
并排
Showing
3 changed file
with
13 addition
and
11 deletion
+13
-11
cpu-defs.h
cpu-defs.h
+0
-1
cpus.c
cpus.c
+12
-10
include/qemu/cpu.h
include/qemu/cpu.h
+1
-0
未找到文件。
cpu-defs.h
浏览文件 @
f5c121b8
...
...
@@ -205,7 +205,6 @@ typedef struct CPUWatchpoint {
/* user data */
\
void *opaque; \
\
struct QemuCond *halt_cond; \
struct qemu_work_item *queued_work_first, *queued_work_last; \
const char *cpu_model_str; \
struct KVMState *kvm_state; \
...
...
cpus.c
浏览文件 @
f5c121b8
...
...
@@ -722,8 +722,10 @@ static void qemu_tcg_wait_io_event(void)
static
void
qemu_kvm_wait_io_event
(
CPUArchState
*
env
)
{
CPUState
*
cpu
=
ENV_GET_CPU
(
env
);
while
(
cpu_thread_is_idle
(
env
))
{
qemu_cond_wait
(
env
->
halt_cond
,
&
qemu_global_mutex
);
qemu_cond_wait
(
cpu
->
halt_cond
,
&
qemu_global_mutex
);
}
qemu_kvm_eat_signals
(
env
);
...
...
@@ -873,7 +875,7 @@ void qemu_cpu_kick(void *_env)
CPUArchState
*
env
=
_env
;
CPUState
*
cpu
=
ENV_GET_CPU
(
env
);
qemu_cond_broadcast
(
env
->
halt_cond
);
qemu_cond_broadcast
(
cpu
->
halt_cond
);
if
(
!
tcg_enabled
()
&&
!
cpu
->
thread_kicked
)
{
qemu_cpu_kick_thread
(
cpu
);
cpu
->
thread_kicked
=
true
;
...
...
@@ -997,9 +999,9 @@ static void qemu_tcg_init_vcpu(void *_env)
/* share a single thread for all cpus with TCG */
if
(
!
tcg_cpu_thread
)
{
cpu
->
thread
=
g_malloc0
(
sizeof
(
QemuThread
));
env
->
halt_cond
=
g_malloc0
(
sizeof
(
QemuCond
));
qemu_cond_init
(
env
->
halt_cond
);
tcg_halt_cond
=
env
->
halt_cond
;
cpu
->
halt_cond
=
g_malloc0
(
sizeof
(
QemuCond
));
qemu_cond_init
(
cpu
->
halt_cond
);
tcg_halt_cond
=
cpu
->
halt_cond
;
qemu_thread_create
(
cpu
->
thread
,
qemu_tcg_cpu_thread_fn
,
env
,
QEMU_THREAD_JOINABLE
);
#ifdef _WIN32
...
...
@@ -1011,7 +1013,7 @@ static void qemu_tcg_init_vcpu(void *_env)
tcg_cpu_thread
=
cpu
->
thread
;
}
else
{
cpu
->
thread
=
tcg_cpu_thread
;
env
->
halt_cond
=
tcg_halt_cond
;
cpu
->
halt_cond
=
tcg_halt_cond
;
}
}
...
...
@@ -1020,8 +1022,8 @@ static void qemu_kvm_start_vcpu(CPUArchState *env)
CPUState
*
cpu
=
ENV_GET_CPU
(
env
);
cpu
->
thread
=
g_malloc0
(
sizeof
(
QemuThread
));
env
->
halt_cond
=
g_malloc0
(
sizeof
(
QemuCond
));
qemu_cond_init
(
env
->
halt_cond
);
cpu
->
halt_cond
=
g_malloc0
(
sizeof
(
QemuCond
));
qemu_cond_init
(
cpu
->
halt_cond
);
qemu_thread_create
(
cpu
->
thread
,
qemu_kvm_cpu_thread_fn
,
env
,
QEMU_THREAD_JOINABLE
);
while
(
!
cpu
->
created
)
{
...
...
@@ -1034,8 +1036,8 @@ static void qemu_dummy_start_vcpu(CPUArchState *env)
CPUState
*
cpu
=
ENV_GET_CPU
(
env
);
cpu
->
thread
=
g_malloc0
(
sizeof
(
QemuThread
));
env
->
halt_cond
=
g_malloc0
(
sizeof
(
QemuCond
));
qemu_cond_init
(
env
->
halt_cond
);
cpu
->
halt_cond
=
g_malloc0
(
sizeof
(
QemuCond
));
qemu_cond_init
(
cpu
->
halt_cond
);
qemu_thread_create
(
cpu
->
thread
,
qemu_dummy_cpu_thread_fn
,
env
,
QEMU_THREAD_JOINABLE
);
while
(
!
cpu
->
created
)
{
...
...
include/qemu/cpu.h
浏览文件 @
f5c121b8
...
...
@@ -69,6 +69,7 @@ struct CPUState {
#ifdef _WIN32
HANDLE
hThread
;
#endif
struct
QemuCond
*
halt_cond
;
bool
thread_kicked
;
bool
created
;
bool
stop
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录