]>
Commit | Line | Data |
---|---|---|
b8ec8d4a | 1 | /* Top level stuff for GDB, the GNU debugger. |
1a494973 | 2 | Copyright 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995 |
51b57ded | 3 | Free Software Foundation, Inc. |
bd5635a1 RP |
4 | |
5 | This file is part of GDB. | |
6 | ||
e522fb52 | 7 | This program is free software; you can redistribute it and/or modify |
bd5635a1 | 8 | it under the terms of the GNU General Public License as published by |
e522fb52 JG |
9 | the Free Software Foundation; either version 2 of the License, or |
10 | (at your option) any later version. | |
bd5635a1 | 11 | |
e522fb52 | 12 | This program is distributed in the hope that it will be useful, |
bd5635a1 RP |
13 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 | GNU General Public License for more details. | |
16 | ||
17 | You should have received a copy of the GNU General Public License | |
e522fb52 | 18 | along with this program; if not, write to the Free Software |
b52cac6b | 19 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ |
bd5635a1 | 20 | |
bd5635a1 | 21 | #include "defs.h" |
b8ec8d4a SS |
22 | #include <setjmp.h> |
23 | #include "top.h" | |
bd5635a1 | 24 | #include "target.h" |
844750e3 SS |
25 | #include "inferior.h" |
26 | #include "call-cmds.h" | |
bd5635a1 | 27 | |
e522fb52 JG |
28 | #include "getopt.h" |
29 | ||
bd5635a1 | 30 | #include <sys/types.h> |
2b576293 | 31 | #include "gdb_stat.h" |
844750e3 | 32 | #include <ctype.h> |
b8ec8d4a | 33 | |
2b576293 | 34 | #include "gdb_string.h" |
bd5635a1 | 35 | |
9748446f | 36 | /* Temporary variable for SET_TOP_LEVEL. */ |
86db943c | 37 | |
9748446f JK |
38 | static int top_level_val; |
39 | ||
40 | /* Do a setjmp on error_return and quit_return. catch_errors is | |
41 | generally a cleaner way to do this, but main() would look pretty | |
42 | ugly if it had to use catch_errors each time. */ | |
43 | ||
44 | #define SET_TOP_LEVEL() \ | |
45 | (((top_level_val = setjmp (error_return)) \ | |
46 | ? (PTR) 0 : (PTR) memcpy (quit_return, error_return, sizeof (jmp_buf))) \ | |
47 | , top_level_val) | |
48 | ||
86db943c SG |
49 | /* If nonzero, display time usage both at startup and for each command. */ |
50 | ||
51 | int display_time; | |
52 | ||
53 | /* If nonzero, display space usage both at startup and for each command. */ | |
54 | ||
55 | int display_space; | |
56 | ||
844750e3 SS |
57 | extern void gdb_init PARAMS ((void)); |
58 | ||
bd5635a1 RP |
59 | int |
60 | main (argc, argv) | |
61 | int argc; | |
62 | char **argv; | |
63 | { | |
64 | int count; | |
bd5635a1 RP |
65 | static int quiet = 0; |
66 | static int batch = 0; | |
67 | ||
68 | /* Pointers to various arguments from command line. */ | |
69 | char *symarg = NULL; | |
70 | char *execarg = NULL; | |
71 | char *corearg = NULL; | |
72 | char *cdarg = NULL; | |
73 | char *ttyarg = NULL; | |
74 | ||
c307bb11 JK |
75 | /* These are static so that we can take their address in an initializer. */ |
76 | static int print_help; | |
77 | static int print_version; | |
78 | ||
79 | /* Pointers to all arguments of --command option. */ | |
bd5635a1 RP |
80 | char **cmdarg; |
81 | /* Allocated size of cmdarg. */ | |
82 | int cmdsize; | |
83 | /* Number of elements of cmdarg used. */ | |
84 | int ncmd; | |
85 | ||
c307bb11 | 86 | /* Indices of all arguments of --directory option. */ |
bd5635a1 RP |
87 | char **dirarg; |
88 | /* Allocated size. */ | |
89 | int dirsize; | |
90 | /* Number of elements used. */ | |
91 | int ndir; | |
92 | ||
3a16d640 JG |
93 | struct stat homebuf, cwdbuf; |
94 | char *homedir, *homeinit; | |
95 | ||
bd5635a1 RP |
96 | register int i; |
97 | ||
86db943c SG |
98 | long time_at_startup = get_run_time (); |
99 | ||
1a494973 C |
100 | START_PROGRESS (argv[0], 0); |
101 | ||
a6b26c44 | 102 | #ifdef MPW |
b8ec8d4a SS |
103 | /* Do all Mac-specific setup. */ |
104 | mac_init (); | |
a6b26c44 | 105 | #endif /* MPW */ |
1a494973 | 106 | |
bd5635a1 | 107 | /* This needs to happen before the first use of malloc. */ |
318bf84f | 108 | init_malloc ((PTR) NULL); |
bd5635a1 RP |
109 | |
110 | #if defined (ALIGN_STACK_ON_STARTUP) | |
111 | i = (int) &count & 0x3; | |
112 | if (i != 0) | |
113 | alloca (4 - i); | |
114 | #endif | |
115 | ||
bd099407 | 116 | /* If error() is called from initialization code, just exit */ |
9748446f | 117 | if (SET_TOP_LEVEL ()) { |
bd099407 JG |
118 | exit(1); |
119 | } | |
120 | ||
bd5635a1 RP |
121 | cmdsize = 1; |
122 | cmdarg = (char **) xmalloc (cmdsize * sizeof (*cmdarg)); | |
123 | ncmd = 0; | |
124 | dirsize = 1; | |
125 | dirarg = (char **) xmalloc (dirsize * sizeof (*dirarg)); | |
126 | ndir = 0; | |
127 | ||
128 | quit_flag = 0; | |
129 | line = (char *) xmalloc (linesize); | |
130 | line[0] = '\0'; /* Terminate saved (now empty) cmd line */ | |
131 | instream = stdin; | |
132 | ||
b7ec5b8d FF |
133 | getcwd (gdb_dirbuf, sizeof (gdb_dirbuf)); |
134 | current_directory = gdb_dirbuf; | |
bd5635a1 | 135 | |
bd5635a1 RP |
136 | /* Parse arguments and options. */ |
137 | { | |
138 | int c; | |
bd5635a1 RP |
139 | /* When var field is 0, use flag field to record the equivalent |
140 | short option (or arbitrary numbers starting at 10 for those | |
141 | with no equivalent). */ | |
142 | static struct option long_options[] = | |
143 | { | |
318bf84f FF |
144 | {"readnow", no_argument, &readnow_symbol_files, 1}, |
145 | {"r", no_argument, &readnow_symbol_files, 1}, | |
146 | {"mapped", no_argument, &mapped_symbol_files, 1}, | |
147 | {"m", no_argument, &mapped_symbol_files, 1}, | |
ee0613d1 JG |
148 | {"quiet", no_argument, &quiet, 1}, |
149 | {"q", no_argument, &quiet, 1}, | |
fb29d681 | 150 | {"silent", no_argument, &quiet, 1}, |
ee0613d1 JG |
151 | {"nx", no_argument, &inhibit_gdbinit, 1}, |
152 | {"n", no_argument, &inhibit_gdbinit, 1}, | |
153 | {"batch", no_argument, &batch, 1}, | |
154 | {"epoch", no_argument, &epoch_interface, 1}, | |
6c803036 JK |
155 | |
156 | /* This is a synonym for "--annotate=1". --annotate is now preferred, | |
157 | but keep this here for a long time because people will be running | |
158 | emacses which use --fullname. */ | |
159 | {"fullname", no_argument, 0, 'f'}, | |
160 | {"f", no_argument, 0, 'f'}, | |
161 | ||
162 | {"annotate", required_argument, 0, 12}, | |
ee0613d1 JG |
163 | {"help", no_argument, &print_help, 1}, |
164 | {"se", required_argument, 0, 10}, | |
165 | {"symbols", required_argument, 0, 's'}, | |
166 | {"s", required_argument, 0, 's'}, | |
167 | {"exec", required_argument, 0, 'e'}, | |
168 | {"e", required_argument, 0, 'e'}, | |
169 | {"core", required_argument, 0, 'c'}, | |
170 | {"c", required_argument, 0, 'c'}, | |
171 | {"command", required_argument, 0, 'x'}, | |
c307bb11 | 172 | {"version", no_argument, &print_version, 1}, |
ee0613d1 JG |
173 | {"x", required_argument, 0, 'x'}, |
174 | {"directory", required_argument, 0, 'd'}, | |
175 | {"cd", required_argument, 0, 11}, | |
176 | {"tty", required_argument, 0, 't'}, | |
177 | {"baud", required_argument, 0, 'b'}, | |
178 | {"b", required_argument, 0, 'b'}, | |
86db943c SG |
179 | {"nw", no_argument, &use_windows, 0}, |
180 | {"nowindows", no_argument, &use_windows, 0}, | |
181 | {"w", no_argument, &use_windows, 1}, | |
182 | {"windows", no_argument, &use_windows, 1}, | |
183 | {"statistics", no_argument, 0, 13}, | |
bd5635a1 RP |
184 | /* Allow machine descriptions to add more options... */ |
185 | #ifdef ADDITIONAL_OPTIONS | |
186 | ADDITIONAL_OPTIONS | |
187 | #endif | |
86db943c | 188 | {0, no_argument, 0, 0} |
bd5635a1 RP |
189 | }; |
190 | ||
191 | while (1) | |
192 | { | |
ee0613d1 JG |
193 | int option_index; |
194 | ||
bd5635a1 RP |
195 | c = getopt_long_only (argc, argv, "", |
196 | long_options, &option_index); | |
197 | if (c == EOF) | |
198 | break; | |
199 | ||
200 | /* Long option that takes an argument. */ | |
201 | if (c == 0 && long_options[option_index].flag == 0) | |
202 | c = long_options[option_index].val; | |
203 | ||
204 | switch (c) | |
205 | { | |
206 | case 0: | |
207 | /* Long option that just sets a flag. */ | |
208 | break; | |
209 | case 10: | |
210 | symarg = optarg; | |
211 | execarg = optarg; | |
212 | break; | |
213 | case 11: | |
214 | cdarg = optarg; | |
215 | break; | |
6c803036 JK |
216 | case 12: |
217 | /* FIXME: what if the syntax is wrong (e.g. not digits)? */ | |
218 | annotation_level = atoi (optarg); | |
219 | break; | |
86db943c SG |
220 | case 13: |
221 | /* Enable the display of both time and space usage. */ | |
222 | display_time = 1; | |
223 | display_space = 1; | |
224 | break; | |
6c803036 JK |
225 | case 'f': |
226 | annotation_level = 1; | |
1a494973 C |
227 | /* We have probably been invoked from emacs. Disable window interface. */ |
228 | use_windows = 0; | |
6c803036 | 229 | break; |
bd5635a1 RP |
230 | case 's': |
231 | symarg = optarg; | |
232 | break; | |
233 | case 'e': | |
234 | execarg = optarg; | |
235 | break; | |
236 | case 'c': | |
237 | corearg = optarg; | |
238 | break; | |
239 | case 'x': | |
240 | cmdarg[ncmd++] = optarg; | |
241 | if (ncmd >= cmdsize) | |
242 | { | |
243 | cmdsize *= 2; | |
244 | cmdarg = (char **) xrealloc ((char *)cmdarg, | |
245 | cmdsize * sizeof (*cmdarg)); | |
246 | } | |
247 | break; | |
248 | case 'd': | |
249 | dirarg[ndir++] = optarg; | |
250 | if (ndir >= dirsize) | |
251 | { | |
252 | dirsize *= 2; | |
253 | dirarg = (char **) xrealloc ((char *)dirarg, | |
254 | dirsize * sizeof (*dirarg)); | |
255 | } | |
256 | break; | |
257 | case 't': | |
258 | ttyarg = optarg; | |
259 | break; | |
260 | case 'q': | |
261 | quiet = 1; | |
262 | break; | |
263 | case 'b': | |
d0d8484a SG |
264 | { |
265 | int i; | |
266 | char *p; | |
267 | ||
268 | i = strtol (optarg, &p, 0); | |
269 | if (i == 0 && p == optarg) | |
8e4c7b3e JK |
270 | |
271 | /* Don't use *_filtered or warning() (which relies on | |
272 | current_target) until after initialize_all_files(). */ | |
273 | ||
274 | fprintf_unfiltered | |
275 | (gdb_stderr, | |
276 | "warning: could not set baud rate to `%s'.\n", optarg); | |
d0d8484a SG |
277 | else |
278 | baud_rate = i; | |
279 | } | |
265c044a DP |
280 | case 'l': |
281 | { | |
282 | int i; | |
283 | char *p; | |
284 | ||
285 | i = strtol (optarg, &p, 0); | |
286 | if (i == 0 && p == optarg) | |
287 | ||
288 | /* Don't use *_filtered or warning() (which relies on | |
289 | current_target) until after initialize_all_files(). */ | |
290 | ||
291 | fprintf_unfiltered | |
292 | (gdb_stderr, | |
293 | "warning: could not set timeout limit to `%s'.\n", optarg); | |
294 | else | |
295 | remote_timeout = i; | |
296 | } | |
bd5635a1 | 297 | break; |
d0d8484a | 298 | |
bd5635a1 RP |
299 | #ifdef ADDITIONAL_OPTION_CASES |
300 | ADDITIONAL_OPTION_CASES | |
301 | #endif | |
302 | case '?': | |
199b2450 | 303 | fprintf_unfiltered (gdb_stderr, |
fb29d681 | 304 | "Use `%s --help' for a complete list of options.\n", |
bd5635a1 RP |
305 | argv[0]); |
306 | exit (1); | |
307 | } | |
bd5635a1 | 308 | } |
fb29d681 | 309 | |
b52cac6b FF |
310 | /* If --help or --version, disable window interface. */ |
311 | if (print_help || print_version) | |
312 | use_windows = 0; | |
313 | ||
bd5635a1 RP |
314 | /* OK, that's all the options. The other arguments are filenames. */ |
315 | count = 0; | |
316 | for (; optind < argc; optind++) | |
317 | switch (++count) | |
318 | { | |
319 | case 1: | |
320 | symarg = argv[optind]; | |
321 | execarg = argv[optind]; | |
322 | break; | |
323 | case 2: | |
324 | corearg = argv[optind]; | |
325 | break; | |
326 | case 3: | |
199b2450 | 327 | fprintf_unfiltered (gdb_stderr, |
bd5635a1 RP |
328 | "Excess command line arguments ignored. (%s%s)\n", |
329 | argv[optind], (optind == argc - 1) ? "" : " ..."); | |
330 | break; | |
331 | } | |
332 | if (batch) | |
333 | quiet = 1; | |
334 | } | |
335 | ||
d8fc8773 | 336 | gdb_init (); |
bd5635a1 | 337 | |
c307bb11 JK |
338 | /* Do these (and anything which might call wrap_here or *_filtered) |
339 | after initialize_all_files. */ | |
340 | if (print_version) | |
341 | { | |
199b2450 | 342 | print_gdb_version (gdb_stdout); |
c307bb11 JK |
343 | wrap_here (""); |
344 | printf_filtered ("\n"); | |
345 | exit (0); | |
346 | } | |
347 | ||
348 | if (print_help) | |
349 | { | |
350 | /* --version is intentionally not documented here, because we | |
351 | are printing the version here, and the help is long enough | |
352 | already. */ | |
353 | ||
199b2450 | 354 | print_gdb_version (gdb_stdout); |
c307bb11 JK |
355 | /* Make sure the output gets printed. */ |
356 | wrap_here (""); | |
357 | printf_filtered ("\n"); | |
358 | ||
359 | /* But don't use *_filtered here. We don't want to prompt for continue | |
360 | no matter how small the screen or how much we're going to print. */ | |
199b2450 | 361 | fputs_unfiltered ("\ |
c307bb11 JK |
362 | This is the GNU debugger. Usage:\n\ |
363 | gdb [options] [executable-file [core-file or process-id]]\n\ | |
364 | Options:\n\ | |
365 | --help Print this message.\n\ | |
366 | --quiet Do not print version number on startup.\n\ | |
367 | --fullname Output information used by emacs-GDB interface.\n\ | |
368 | --epoch Output information used by epoch emacs-GDB interface.\n\ | |
1a494973 C |
369 | ", gdb_stdout); |
370 | fputs_unfiltered ("\ | |
c307bb11 JK |
371 | --batch Exit after processing options.\n\ |
372 | --nx Do not read .gdbinit file.\n\ | |
373 | --tty=TTY Use TTY for input/output by the program being debugged.\n\ | |
374 | --cd=DIR Change current directory to DIR.\n\ | |
375 | --directory=DIR Search for source files in DIR.\n\ | |
1a494973 C |
376 | ", gdb_stdout); |
377 | fputs_unfiltered ("\ | |
c307bb11 JK |
378 | --command=FILE Execute GDB commands from FILE.\n\ |
379 | --symbols=SYMFILE Read symbols from SYMFILE.\n\ | |
380 | --exec=EXECFILE Use EXECFILE as the executable.\n\ | |
381 | --se=FILE Use FILE as symbol file and executable file.\n\ | |
1a494973 C |
382 | ", gdb_stdout); |
383 | fputs_unfiltered ("\ | |
c307bb11 JK |
384 | --core=COREFILE Analyze the core dump COREFILE.\n\ |
385 | -b BAUDRATE Set serial port baud rate used for remote debugging.\n\ | |
386 | --mapped Use mapped symbol files if supported on this system.\n\ | |
387 | --readnow Fully read symbol files on first access.\n\ | |
754e5da2 | 388 | --nw Do not use a window interface.\n\ |
199b2450 | 389 | ", gdb_stdout); |
c307bb11 | 390 | #ifdef ADDITIONAL_OPTION_HELP |
199b2450 | 391 | fputs_unfiltered (ADDITIONAL_OPTION_HELP, gdb_stdout); |
c307bb11 | 392 | #endif |
199b2450 | 393 | fputs_unfiltered ("\n\ |
c307bb11 | 394 | For more information, type \"help\" from within GDB, or consult the\n\ |
199b2450 | 395 | GDB manual (available as on-line info or a printed manual).\n", gdb_stdout); |
c307bb11 JK |
396 | exit (0); |
397 | } | |
b52cac6b | 398 | |
bd5635a1 RP |
399 | if (!quiet) |
400 | { | |
81066208 JG |
401 | /* Print all the junk at the top, with trailing "..." if we are about |
402 | to read a symbol file (possibly slowly). */ | |
403 | print_gnu_advertisement (); | |
199b2450 | 404 | print_gdb_version (gdb_stdout); |
81066208 JG |
405 | if (symarg) |
406 | printf_filtered (".."); | |
bd099407 | 407 | wrap_here(""); |
199b2450 | 408 | gdb_flush (gdb_stdout); /* Force to screen during slow operations */ |
bd5635a1 RP |
409 | } |
410 | ||
81066208 | 411 | error_pre_print = "\n\n"; |
1a494973 C |
412 | quit_pre_print = error_pre_print; |
413 | ||
51b57ded FF |
414 | /* We may get more than one warning, don't double space all of them... */ |
415 | warning_pre_print = "\nwarning: "; | |
81066208 | 416 | |
3a16d640 JG |
417 | /* Read and execute $HOME/.gdbinit file, if it exists. This is done |
418 | *before* all the command line arguments are processed; it sets | |
419 | global parameters, which are independent of what file you are | |
420 | debugging or what directory you are in. */ | |
421 | homedir = getenv ("HOME"); | |
422 | if (homedir) | |
423 | { | |
424 | homeinit = (char *) alloca (strlen (getenv ("HOME")) + | |
425 | strlen (gdbinit) + 10); | |
426 | strcpy (homeinit, getenv ("HOME")); | |
427 | strcat (homeinit, "/"); | |
428 | strcat (homeinit, gdbinit); | |
b52cac6b | 429 | |
9e77e83d | 430 | if (!inhibit_gdbinit) |
3a16d640 | 431 | { |
9748446f | 432 | if (!SET_TOP_LEVEL ()) |
3a16d640 JG |
433 | source_command (homeinit, 0); |
434 | } | |
435 | do_cleanups (ALL_CLEANUPS); | |
436 | ||
437 | /* Do stats; no need to do them elsewhere since we'll only | |
438 | need them if homedir is set. Make sure that they are | |
439 | zero in case one of them fails (this guarantees that they | |
440 | won't match if either exists). */ | |
441 | ||
442 | memset (&homebuf, 0, sizeof (struct stat)); | |
443 | memset (&cwdbuf, 0, sizeof (struct stat)); | |
444 | ||
445 | stat (homeinit, &homebuf); | |
446 | stat (gdbinit, &cwdbuf); /* We'll only need this if | |
447 | homedir was set. */ | |
448 | } | |
754e5da2 | 449 | |
bd5635a1 RP |
450 | /* Now perform all the actions indicated by the arguments. */ |
451 | if (cdarg != NULL) | |
452 | { | |
9748446f | 453 | if (!SET_TOP_LEVEL ()) |
bd5635a1 RP |
454 | { |
455 | cd_command (cdarg, 0); | |
bd5635a1 RP |
456 | } |
457 | } | |
f266e564 JK |
458 | do_cleanups (ALL_CLEANUPS); |
459 | ||
bd5635a1 | 460 | for (i = 0; i < ndir; i++) |
9748446f | 461 | if (!SET_TOP_LEVEL ()) |
bd5635a1 | 462 | directory_command (dirarg[i], 0); |
51b57ded | 463 | free ((PTR)dirarg); |
f266e564 JK |
464 | do_cleanups (ALL_CLEANUPS); |
465 | ||
bd5635a1 RP |
466 | if (execarg != NULL |
467 | && symarg != NULL | |
2e4964ad | 468 | && STREQ (execarg, symarg)) |
bd5635a1 RP |
469 | { |
470 | /* The exec file and the symbol-file are the same. If we can't open | |
471 | it, better only print one error message. */ | |
9748446f | 472 | if (!SET_TOP_LEVEL ()) |
bd5635a1 RP |
473 | { |
474 | exec_file_command (execarg, !batch); | |
81066208 | 475 | symbol_file_command (symarg, 0); |
bd5635a1 RP |
476 | } |
477 | } | |
478 | else | |
479 | { | |
480 | if (execarg != NULL) | |
9748446f | 481 | if (!SET_TOP_LEVEL ()) |
bd5635a1 RP |
482 | exec_file_command (execarg, !batch); |
483 | if (symarg != NULL) | |
9748446f | 484 | if (!SET_TOP_LEVEL ()) |
81066208 | 485 | symbol_file_command (symarg, 0); |
bd5635a1 | 486 | } |
f266e564 JK |
487 | do_cleanups (ALL_CLEANUPS); |
488 | ||
81066208 JG |
489 | /* After the symbol file has been read, print a newline to get us |
490 | beyond the copyright line... But errors should still set off | |
491 | the error message with a (single) blank line. */ | |
afe4ca15 JG |
492 | if (!quiet) |
493 | printf_filtered ("\n"); | |
81066208 | 494 | error_pre_print = "\n"; |
1a494973 | 495 | quit_pre_print = error_pre_print; |
318bf84f | 496 | warning_pre_print = "\nwarning: "; |
81066208 | 497 | |
bd5635a1 | 498 | if (corearg != NULL) |
9748446f | 499 | if (!SET_TOP_LEVEL ()) |
bd5635a1 | 500 | core_file_command (corearg, !batch); |
9748446f | 501 | else if (isdigit (corearg[0]) && !SET_TOP_LEVEL ()) |
bd5635a1 | 502 | attach_command (corearg, !batch); |
f266e564 | 503 | do_cleanups (ALL_CLEANUPS); |
bd5635a1 RP |
504 | |
505 | if (ttyarg != NULL) | |
9748446f | 506 | if (!SET_TOP_LEVEL ()) |
bd5635a1 | 507 | tty_command (ttyarg, !batch); |
f266e564 | 508 | do_cleanups (ALL_CLEANUPS); |
bd5635a1 RP |
509 | |
510 | #ifdef ADDITIONAL_OPTION_HANDLER | |
511 | ADDITIONAL_OPTION_HANDLER; | |
512 | #endif | |
513 | ||
81066208 | 514 | /* Error messages should no longer be distinguished with extra output. */ |
1a494973 C |
515 | error_pre_print = NULL; |
516 | quit_pre_print = NULL; | |
318bf84f | 517 | warning_pre_print = "warning: "; |
81066208 | 518 | |
3a16d640 JG |
519 | /* Read the .gdbinit file in the current directory, *if* it isn't |
520 | the same as the $HOME/.gdbinit file (it should exist, also). */ | |
521 | ||
522 | if (!homedir | |
523 | || memcmp ((char *) &homebuf, (char *) &cwdbuf, sizeof (struct stat))) | |
9e77e83d | 524 | if (!inhibit_gdbinit) |
bd5635a1 | 525 | { |
9748446f | 526 | if (!SET_TOP_LEVEL ()) |
d75710b0 | 527 | source_command (gdbinit, 0); |
bd5635a1 | 528 | } |
d75710b0 FF |
529 | do_cleanups (ALL_CLEANUPS); |
530 | ||
531 | for (i = 0; i < ncmd; i++) | |
532 | { | |
9748446f | 533 | if (!SET_TOP_LEVEL ()) |
d75710b0 FF |
534 | { |
535 | if (cmdarg[i][0] == '-' && cmdarg[i][1] == '\0') | |
536 | read_command_file (stdin); | |
537 | else | |
538 | source_command (cmdarg[i], !batch); | |
539 | do_cleanups (ALL_CLEANUPS); | |
540 | } | |
541 | } | |
51b57ded | 542 | free ((PTR)cmdarg); |
bd5635a1 | 543 | |
8b3c897a | 544 | /* Read in the old history after all the command files have been read. */ |
fc61e9ee | 545 | init_history(); |
8b3c897a | 546 | |
bd5635a1 RP |
547 | if (batch) |
548 | { | |
549 | /* We have hit the end of the batch file. */ | |
550 | exit (0); | |
551 | } | |
552 | ||
553 | /* Do any host- or target-specific hacks. This is used for i960 targets | |
554 | to force the user to set a nindy target and spec its parameters. */ | |
555 | ||
556 | #ifdef BEFORE_MAIN_LOOP_HOOK | |
557 | BEFORE_MAIN_LOOP_HOOK; | |
558 | #endif | |
559 | ||
1a494973 C |
560 | END_PROGRESS (argv[0]); |
561 | ||
86db943c SG |
562 | /* Show time and/or space usage. */ |
563 | ||
564 | if (display_time) | |
565 | { | |
566 | long init_time = get_run_time () - time_at_startup; | |
567 | ||
568 | printf_unfiltered ("Startup time: %ld.%06ld\n", | |
569 | init_time / 1000000, init_time % 1000000); | |
570 | } | |
571 | ||
572 | if (display_space) | |
573 | { | |
265c044a | 574 | #ifdef HAVE_SBRK |
86db943c SG |
575 | extern char **environ; |
576 | char *lim = (char *) sbrk (0); | |
577 | ||
578 | printf_unfiltered ("Startup size: data size %ld\n", | |
579 | (long) (lim - (char *) &environ)); | |
265c044a | 580 | #endif |
86db943c SG |
581 | } |
582 | ||
1a494973 C |
583 | /* The default command loop. |
584 | The WIN32 Gui calls this main to set up gdb's state, and | |
585 | has its own command loop. */ | |
9e77e83d | 586 | #ifndef _WIN32 |
bd5635a1 RP |
587 | while (1) |
588 | { | |
9748446f | 589 | if (!SET_TOP_LEVEL ()) |
bd5635a1 | 590 | { |
f266e564 | 591 | do_cleanups (ALL_CLEANUPS); /* Do complete cleanup */ |
754e5da2 SG |
592 | /* GUIs generally have their own command loop, mainloop, or whatever. |
593 | This is a good place to gain control because many error | |
594 | conditions will end up here via longjmp(). */ | |
595 | if (command_loop_hook) | |
596 | command_loop_hook (); | |
a6b26c44 | 597 | else |
754e5da2 | 598 | command_loop (); |
bd5635a1 RP |
599 | quit_command ((char *)0, instream == stdin); |
600 | } | |
601 | } | |
1a494973 | 602 | |
bd5635a1 | 603 | /* No exit -- exit is through quit_command. */ |
1a494973 C |
604 | #endif |
605 | ||
bd5635a1 | 606 | } |
d3507982 JK |
607 | \f |
608 | void | |
609 | init_proc () | |
610 | { | |
611 | } | |
612 | ||
d3507982 JK |
613 | void |
614 | proc_remove_foreign (pid) | |
615 | int pid; | |
616 | { | |
617 | } | |
bd5635a1 RP |
618 | |
619 | void | |
b8ec8d4a SS |
620 | fputs_unfiltered (linebuffer, stream) |
621 | const char *linebuffer; | |
622 | FILE *stream; | |
bd5635a1 | 623 | { |
754e5da2 SG |
624 | if (fputs_unfiltered_hook) |
625 | { | |
86db943c SG |
626 | /* FIXME: I think we should only be doing this for stdout or stderr. |
627 | Either that or we should be passing stream to the hook so it can | |
628 | deal with it. If that is cleaned up, this function can go back | |
629 | into utils.c and the fputs_unfiltered_hook can replace the current | |
630 | ability to avoid this function by not linking with main.c. */ | |
631 | fputs_unfiltered_hook (linebuffer, stream); | |
754e5da2 SG |
632 | return; |
633 | } | |
634 | ||
b8ec8d4a | 635 | fputs (linebuffer, stream); |
bd5635a1 | 636 | } |