7f15f19a4d08ec59f6f5e6adde082f2975f399bd
[pspp-builds.git] / src / ui / debugger.c
1 /* PSPP - computes sample statistics.
2    Copyright (C) 2006 Free Software Foundation, Inc.
3
4    This program is free software; you can redistribute it and/or
5    modify it under the terms of the GNU General Public License as
6    published by the Free Software Foundation; either version 2 of the
7    License, or (at your option) any later version.
8
9    This program is distributed in the hope that it will be useful, but
10    WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12    General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this program; if not, write to the Free Software
16    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17    02110-1301, USA. */
18
19 #include <config.h>
20
21 #include "debugger.h"
22
23 #if HAVE_SYS_TYPES_H && HAVE_SYS_WAIT_H
24 #include <errno.h>
25 #include <sys/types.h>
26 #include <unistd.h>
27 #include <stdio.h>
28 #include <stdlib.h>
29 #include <sys/wait.h>
30
31 /* Fork, start gdb and connect to the parent process.
32    If that happens successfully, then this function does not return,
33    but exits with EXIT_FAILURE. Otherwise it returns.
34  */
35 void
36 connect_debugger (void)
37 {
38   char pidstr[20];
39   pid_t pid;
40
41   snprintf (pidstr, 20, "%d", getpid ());
42   pid = fork ();
43   if ( pid  == -1 )
44     {
45       perror ("Cannot fork");
46       return ;
47     }
48   if ( pid == 0 )
49     {
50       /* child */
51       execlp ("gdb", "gdb", "-p", pidstr, NULL);
52       perror ("Cannot exec debugger");
53       exit (EXIT_FAILURE);
54     }
55   else
56     {
57       int status;
58       wait (&status);
59       if ( EXIT_SUCCESS != WEXITSTATUS (status) )
60         return ;
61     }
62
63   exit (EXIT_FAILURE);
64 }
65
66 #else /* !(HAVE_SYS_TYPES_H && HAVE_SYS_WAIT_H) */
67 /* Don't know how to connect to gdb.
68    Just return.
69  */
70 void
71 connect_debugger (void)
72 {
73 }
74 #endif /* !(HAVE_SYS_TYPES_H && HAVE_SYS_WAIT_H) */