Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
qemu
提交
c636bb66
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看板
提交
c636bb66
编写于
2月 05, 2007
作者:
B
bellard
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
gdbserver fix
git-svn-id:
svn://svn.savannah.nongnu.org/qemu/trunk@2393
c046a42c-6fe2-441c-8c8c-71466251a162
上级
84f2e8ef
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
24 addition
and
16 deletion
+24
-16
gdbstub.c
gdbstub.c
+14
-0
gdbstub.h
gdbstub.h
+1
-0
monitor.c
monitor.c
+1
-1
vl.c
vl.c
+8
-15
未找到文件。
gdbstub.c
浏览文件 @
c636bb66
...
...
@@ -1234,4 +1234,18 @@ int gdbserver_start(CharDriverState *chr)
qemu_add_vm_stop_handler
(
gdb_vm_stopped
,
s
);
return
0
;
}
int
gdbserver_start_port
(
int
port
)
{
CharDriverState
*
chr
;
char
gdbstub_port_name
[
128
];
snprintf
(
gdbstub_port_name
,
sizeof
(
gdbstub_port_name
),
"tcp::%d,nowait,nodelay,server"
,
port
);
chr
=
qemu_chr_open
(
gdbstub_port_name
);
if
(
!
chr
)
return
-
EIO
;
return
gdbserver_start
(
chr
);
}
#endif
gdbstub.h
浏览文件 @
c636bb66
...
...
@@ -14,6 +14,7 @@ void gdb_exit(CPUState *, int);
int
gdbserver_start
(
int
);
#else
int
gdbserver_start
(
CharDriverState
*
chr
);
int
gdbserver_start_port
(
int
port
);
#endif
#endif
monitor.c
浏览文件 @
c636bb66
...
...
@@ -423,7 +423,7 @@ static void do_gdbserver(int has_port, int port)
{
if
(
!
has_port
)
port
=
DEFAULT_GDBSTUB_PORT
;
if
(
gdbserver_start
(
port
)
<
0
)
{
if
(
gdbserver_start
_port
(
port
)
<
0
)
{
qemu_printf
(
"Could not open gdbserver socket on port %d
\n
"
,
port
);
}
else
{
qemu_printf
(
"Waiting gdb connection on port %d
\n
"
,
port
);
...
...
vl.c
浏览文件 @
c636bb66
...
...
@@ -6499,8 +6499,7 @@ static BOOL WINAPI qemu_ctrl_handler(DWORD type)
int
main
(
int
argc
,
char
**
argv
)
{
#ifdef CONFIG_GDBSTUB
int
use_gdbstub
;
char
gdbstub_port_name
[
128
];
int
use_gdbstub
,
gdbstub_port
;
#endif
int
i
,
cdrom_index
;
int
snapshot
,
linux_boot
;
...
...
@@ -6568,7 +6567,7 @@ int main(int argc, char **argv)
bios_size
=
BIOS_SIZE
;
#ifdef CONFIG_GDBSTUB
use_gdbstub
=
0
;
sprintf
(
gdbstub_port_name
,
"%d"
,
DEFAULT_GDBSTUB_PORT
)
;
gdbstub_port
=
DEFAULT_GDBSTUB_PORT
;
#endif
snapshot
=
0
;
nographic
=
0
;
...
...
@@ -6812,7 +6811,7 @@ int main(int argc, char **argv)
use_gdbstub
=
1
;
break
;
case
QEMU_OPTION_p
:
pstrcpy
(
gdbstub_port_name
,
sizeof
(
gdbstub_port_name
),
optarg
);
gdbstub_port
=
atoi
(
optarg
);
break
;
#endif
case
QEMU_OPTION_L
:
...
...
@@ -7220,19 +7219,13 @@ int main(int argc, char **argv)
#ifdef CONFIG_GDBSTUB
if
(
use_gdbstub
)
{
CharDriverState
*
chr
;
int
port
;
port
=
atoi
(
gdbstub_port_name
);
if
(
port
!=
0
)
sprintf
(
gdbstub_port_name
,
"tcp::%d,nowait,nodelay,server"
,
port
);
chr
=
qemu_chr_open
(
gdbstub_port_name
);
if
(
!
chr
)
{
fprintf
(
stderr
,
"qemu: could not open gdbstub device '%s'
\n
"
,
gdbstub_port_name
);
/* XXX: use standard host:port notation and modify options
accordingly. */
if
(
gdbserver_start_port
(
gdbstub_port
)
<
0
)
{
fprintf
(
stderr
,
"qemu: could not open gdbstub device on port '%d'
\n
"
,
gdbstub_port
);
exit
(
1
);
}
gdbserver_start
(
chr
);
}
else
#endif
if
(
loadvm
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录