1 /* GLIB - Library of useful routines for C programming
2 * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Library General Public License for more details.
14 * You should have received a copy of the GNU Library General Public
15 * License along with this library; if not, write to the
16 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 * Boston, MA 02111-1307, USA.
29 #ifdef HAVE_SYS_TIME_H
32 #ifdef HAVE_SYS_TIMES_H
33 #include <sys/times.h>
35 #include <sys/types.h>
42 #ifdef HAVE_SYS_SELECT_H
43 #include <sys/select.h>
44 #endif /* HAVE_SYS_SELECT_H */
47 #include <string.h> /* for bzero on BSD systems */
51 #include <process.h> /* For _getpid() */
55 # define SELECT_MASK fd_set
61 # define SELECT_MASK void
63 # define SELECT_MASK int
68 static void stack_trace (char **args);
70 extern volatile gboolean glib_on_error_halt;
71 volatile gboolean glib_on_error_halt = TRUE;
74 g_on_error_query (const gchar *prg_name)
76 static const gchar *query1 = "[E]xit, [H]alt";
77 static const gchar *query2 = ", show [S]tack trace";
78 static const gchar *query3 = " or [P]roceed";
82 prg_name = g_get_prgname ();
88 "%s (pid:%u): %s%s%s: ",
96 "(process:%u): %s%s: ",
102 fgets (buf, 8, stdin);
104 if ((buf[0] == 'E' || buf[0] == 'e')
107 else if ((buf[0] == 'P' || buf[0] == 'p')
111 && (buf[0] == 'S' || buf[0] == 's')
114 g_on_error_stack_trace (prg_name);
117 else if ((buf[0] == 'H' || buf[0] == 'h')
120 while (glib_on_error_halt)
122 glib_on_error_halt = TRUE;
130 g_on_error_stack_trace (const gchar *prg_name)
135 gchar *args[4] = { "gdb", NULL, NULL, NULL };
140 sprintf (buf, "%u", (guint) getpid ());
142 args[1] = (gchar*) prg_name;
151 else if (pid == (pid_t) -1)
153 perror ("unable to fork gdb");
157 while (glib_on_error_halt)
159 glib_on_error_halt = TRUE;
165 static gboolean stack_trace_done = FALSE;
168 stack_trace_sigchld (int signum)
170 stack_trace_done = TRUE;
174 stack_trace (char **args)
183 int sel, index, state;
187 stack_trace_done = FALSE;
188 signal (SIGCHLD, stack_trace_sigchld);
190 if ((pipe (in_fd) == -1) || (pipe (out_fd) == -1))
192 perror ("unable to open pipe");
199 close (0); dup (in_fd[0]); /* set the stdin to the in pipe */
200 close (1); dup (out_fd[1]); /* set the stdout to the out pipe */
201 close (2); dup (out_fd[1]); /* set the stderr to the out pipe */
203 execvp (args[0], args); /* exec gdb */
204 perror ("exec failed");
207 else if (pid == (pid_t) -1)
209 perror ("unable to fork");
214 FD_SET (out_fd[0], &fdset);
216 write (in_fd[1], "backtrace\n", 10);
217 write (in_fd[1], "p x = 0\n", 8);
218 write (in_fd[1], "quit\n", 5);
229 sel = select (FD_SETSIZE, &readset, NULL, NULL, &tv);
233 if ((sel > 0) && (FD_ISSET (out_fd[0], &readset)))
235 if (read (out_fd[0], &c, 1))
249 if ((c == '\n') || (c == '\r'))
252 fprintf (stdout, "%s", buffer);
262 else if (stack_trace_done)