public inbox for gdb-prs@sourceware.org
help / color / mirror / Atom feed
* [Bug gdb/16953] New: New inferior for each rerun of a simple fork/exec of hello, where hello binary is missing.
@ 2014-05-16 17:48 dje at google dot com
  0 siblings, 0 replies; only message in thread
From: dje at google dot com @ 2014-05-16 17:48 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=16953

            Bug ID: 16953
           Summary: New inferior for each rerun of a simple fork/exec of
                    hello, where hello binary is missing.
           Product: gdb
           Version: HEAD
            Status: NEW
          Severity: normal
          Priority: P2
         Component: gdb
          Assignee: unassigned at sourceware dot org
          Reporter: dje at google dot com

fork-exec-hello.c:

#include <stdlib.h>
#include <unistd.h>
#include <wait.h>

const char hello[] = "./hello.x64";

int
main ()
{
  int child;
  int status;

  child = fork ();
  if (child < 0)
    {
      perror ("fork");
      exit (1);
    }

  if (child == 0)
    {
      execl (hello, hello, NULL);
      perror ("execl");
    }
  else
    {
      waitpid (child, &status, 0);
    }

  return 0;
}

hello.c:

well, you know ...

With hello.x64 binary missing:

(gdb) set follow-fork child
(gdb) r
Starting program: /home/dje/src/play/fork-exec-hello.x64
[New process 6671]
execl: No such file or directory
[Inferior 2 (process 6671) exited normally]
(gdb) i inf
  Num  Description       Executable
* 2    <null>            /home/dje/src/play/fork-exec-hello.x64
  1    <null>            /home/dje/src/play/fork-exec-hello.x64
(gdb) r
Starting program: /home/dje/src/play/fork-exec-hello.x64
[New process 6674]
execl: No such file or directory
[Inferior 3 (process 6674) exited normally]
(gdb) i inf
  Num  Description       Executable
* 3    <null>            /home/dje/src/play/fork-exec-hello.x64
  2    <null>            /home/dje/src/play/fork-exec-hello.x64
  1    <null>            /home/dje/src/play/fork-exec-hello.x64
(gdb) r
Starting program: /home/dje/src/play/fork-exec-hello.x64
[New process 6677]
execl: No such file or directory
[Inferior 4 (process 6677) exited normally]
(gdb) i inf
  Num  Description       Executable
* 4    <null>            /home/dje/src/play/fork-exec-hello.x64
  3    <null>            /home/dje/src/play/fork-exec-hello.x64
  2    <null>            /home/dje/src/play/fork-exec-hello.x64
  1    <null>            /home/dje/src/play/fork-exec-hello.x64
(gdb)

-- 
You are receiving this mail because:
You are on the CC list for the bug.


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2014-05-16 17:48 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-05-16 17:48 [Bug gdb/16953] New: New inferior for each rerun of a simple fork/exec of hello, where hello binary is missing dje at google dot com

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).