avatar
[转载] waitpid 一问# Unix - 噫吁兮,危乎高哉
z*y
1
【 以下文字转载自 Programming 讨论区 】
【 原文由 zyy 所发表 】
For programming experts, please check the following code.
pid = fork() ;
if (pid == 0) {
exec("error_prog") ;
}
else {
waitpid(pid, ....) ;
}
The child process executes "error_prog" which later generates SIGSEGV. The
signal can be caught by the parent. However, is it possible for the parent to
know the address of the instruction of the child program that generates the
fault? If so, how?
Thanks.
avatar
p*k
2
If the child aborted after SIGSEGV, how about let the parent
launch gdb on the core (assume it is there) and do a little
analysis?:)
Seriously, is there any particular reason u want to get
the instruction address while the parent is running?

【在 z*y 的大作中提到】
: 【 以下文字转载自 Programming 讨论区 】
: 【 原文由 zyy 所发表 】
: For programming experts, please check the following code.
: pid = fork() ;
: if (pid == 0) {
: exec("error_prog") ;
: }
: else {
: waitpid(pid, ....) ;
: }

相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。