调试fork()在eclipse cdt [英] Debug fork() in eclipse cdt

查看:246
本文介绍了调试fork()在eclipse cdt的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我试图使用eclipse cdt(Juno)调试一些fork()机制。
我在C中写了程序。

  if(-1 ==(pid = fork()))/ *错误* / 
goto清理;
else if(0 == pid)/ * child * /
{
execlp(gcc,gcc,cFilePath,-o,GCC_OUTPUT_FILE_NAME,NULL);
goto清理/ *到达这里只有错误! * /
}
else if(pid> 0)/ * parent - checks:正确的pid返回,正常返回,退出状态= 0 * /
{
returnedpid =等待(退出状态);
if(pid!= returnedpid || exitStatus == NULL ||!WIFEXITED(* exitStatus)||!WEXITSTATUS(* exitStatus))
goto cleanup;
}

我尝试添加 set follow-fork-模式孩子如下所示: http://unix.derkeiler.com/Newsgroups/comp.unix.programmer/2006-02/msg00435.html



1 。如何调试(0 == pid)



2。当我到等待语句时,调试器刚刚返回,不等待()假设挂起,直到孩子返回?为什么会立即返回?

解决方案

您的问题可能是由于detach-on-fork关闭DSF默认设置(也是gdb的默认值)。



1)将断点放在execlp ...和returnedpid = ...的行上。
2)在调试配置中启用不间断模式和自动调试分叉进程。
3)启动调试会话。您将在小孩或父母中点击一个断点。现在看看调试视图。





你会注意到你的二进制显示两个线程。



4)点击一个或另一个(上图中带有main()的行)来切换调试上下文。


I'm trying to debug some fork() mechanism with eclipse cdt (Juno). I wrote the program in C.

  if( -1 == (pid = fork()) ) /* error */
    goto cleanup;
  else if ( 0 == pid ) /* child */
  {
    execlp("gcc", "gcc", cFilePath, "-o" , GCC_OUTPUT_FILE_NAME, NULL);
    goto cleanup; /* Arrives here only on error! */
  }
  else if (pid > 0) /* parent - checks: correct pid returns, returns normally, with exit status = 0*/
  {
      returnedpid = wait(exitStatus);
      if( pid != returnedpid || exitStatus == NULL || !WIFEXITED(*exitStatus) || !WEXITSTATUS(*exitStatus) )
          goto cleanup;
  }

I tried to add "set follow-fork-mode child" as said here: http://unix.derkeiler.com/Newsgroups/comp.unix.programmer/2006-02/msg00435.html

1. How can I debug the code section where (0==pid)?

2. When I get to the wait statement, the debugger just return immediately, isn't wait() suppose to suspend till the child returns? Why is it return immediately?

解决方案

Your problems are probably due to "detach-on-fork" being set to off. DSF sets this by default (it's also gdb's default).

1) Put a breakpoint onto lines with "execlp..." and "returnedpid =...". 2) In debug configuration enable "non-stop mode" and "automatically debug forked process". 3) Start debug session. You will hit a breakpoint either in child or parent. Now see debug view.

You will notice your binary shows two threads.

4) Click on one or the other (lines with main() in above image) to switch debug context.

这篇关于调试fork()在eclipse cdt的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆