From 0d06e24ba79bdc3617c5e56a2c32b3a7f28a4bd5 Mon Sep 17 00:00:00 2001 From: Jason Molenda Date: Tue, 11 Jan 2000 03:07:37 +0000 Subject: [PATCH] import gdb-2000-01-10 snapshot --- gdb/ChangeLog | 85 ++++ gdb/Makefile.in | 2 +- gdb/breakpoint.c | 27 +- gdb/coffread.c | 6 +- gdb/config/i386/i386v42mp.mh | 2 +- gdb/config/i386/tm-i386sol2.h | 14 - gdb/config/i386/tm-i386v42mp.h | 39 +- gdb/config/sparc/tm-sun4sol2.h | 12 - gdb/configure | 571 +++++++++++++------------ gdb/configure.in | 2 +- gdb/configure.tgt | 1 + gdb/gdbthread.h | 135 ++++-- gdb/infcmd.c | 26 +- gdb/procfs.c | 112 +++-- gdb/rdi-share/serdrv.c | 22 +- gdb/rdi-share/unixcomm.c | 8 +- gdb/remote.c | 9 +- gdb/target.c | 248 ++++++++--- gdb/target.h | 370 ++++++++-------- gdb/testsuite/ChangeLog | 21 + gdb/testsuite/gdb.base/default.exp | 2 +- gdb/testsuite/gdb.base/display.exp | 2 +- gdb/testsuite/gdb.base/help.exp | 2 +- gdb/testsuite/gdb.base/selftest.exp | 40 +- gdb/testsuite/gdb.base/so-impl-ld.exp | 16 +- gdb/testsuite/gdb.base/so-indr-cl.exp | 5 +- gdb/testsuite/gdb.threads/pthreads.exp | 2 +- gdb/thread.c | 102 +++-- gdb/win32-nat.c | 9 + 29 files changed, 1167 insertions(+), 725 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index c286719448..ccd11123b7 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,88 @@ +2000-01-09 Christopher Faylor + + * win32nat.c (handle_exceptions): Handle various arithmetic exceptions. + * configure.in: Add an additional library to cygwin link. + * configure: Regenerate. + + Patch from Egor Duda : + * coffread.c (coff_symfile_read): Reinstate ability to recognize "pe" + type. + +2000-01-07 Michael Snyder + + * uw-thread.c: New file to support UnixWare user-mode threads: + contributed by Nickolas Duffek . + * target.h (struct target_ops): New vector, to_extra_thread_info, + allows back-ends to give extra details in info thread display. + (target_extra_thread_info): define new macro. + (target_find_new_threads): simplify macro. Cleanup comments. + * target.c (to_extra_thread_info): default and inherit new vector. + (cleanup_target): eliminate PARAMS, break up long lines, + provide default definition for to_extra_thread_info, and + to_find_new_threads. Default to_thread_alive and to_query + to return_zero, not target_ignore (they each return int not void). + (debug_to_find_new_threads): new debug entry. + (setup_target_debug): add debug_to_find_new_threads. + * gdbthread.h: export struct thread_info, find_thread_pid, and + iterate_over_threads. Add comments. Eliminate PARAMS. Update + copyright. Add new private data pointer for use by target back-ends. + * thread.c (struct thread_info): move definition to gdbthread.h. + (find_thread_pid): new exported function for thread lookup. + (iterate_over_threads): new exported function for applying + arbitrary operations to threads. Update copyright to 2000. + (info_threads_command): use new target_extra_thread_info vector + to display extra information about each thread (if implemented). + * config/i386/tm-i386v42mp.h: remove obsolete #defines for procfs. + Add defines for PIDGET, etc. + * config/i386/tm-i386sol2.h: ditto. + * config/sparc/tm-sun4sol2.h: ditto. + * config/i386/i386v42mp.mh: add uw-thread.o to NATDEPFILES. + * testsuite/gdb.threads/pthreads.exp: Try to link with -lthread + if -lpthread and -lpthreads fail. + + * procfs.c: (PIDGET, TIDGET, MERGEPID): change default to no-op. + (proc_flags): combine flags that UnixWare splits into two locations. + (proc_modify_flag): add support for PR_KLC (kill on last close). + (proc_[un]set_kill_on_last_close): new functions. + +2000-01-06 Fernando Nasser + + * remote.c (remote_open_1): Fix message so it does not imply a + specific syntax for serial ports, as it is OS dependent. + (remote_async_open_1): Ibid. + (init_remote_ops): Ibid. + +2000-01-06 Fernando Nasser + + * rdi-share/serdrv.c (SerialOpen): Use speed from "-b" argument or + "set remotebaud" command (if set) when no speed is specified on + the "target rdi" command. + +2000-01-06 Fernando Nasser + + * rdi-share/serdrv.c (find_baud_rate): Add entries for 57600 and + 115200. + (baud_options[]): Ibid. + +2000-01-06 Fernando Nasser + + * rdi-share/unixcomm.c: Fix SERIAL_PREFIX so it matches the prefix + used by each operating system. + +2000-01-06 Elena Zannoni + + * breakpoint.c (until_break_command): Add an argument for the + continuation, the beginning of the cleanups set up by this + command. + (until_break_command_continuation): Do cleanups until the one + passed in as argument instead of doing all of them. + + * infcmd.c (finish_command_continuation): Expect a new argument, + which indicates up to where to do cleanups. Update calls to + do_exec_cleanups to use this marker, instead of ALL_CLEANUPS. + (finish_command): Add another argument for the continuation: the + starting cleanup for this command. + 2000-01-05 Fernando Nasser From Grant Edwards (original patch from Thomas diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 51d92f2d88..76574a5ab0 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -229,7 +229,7 @@ CDEPS = $(XM_CDEPS) $(TM_CDEPS) $(NAT_CDEPS) $(SIM) $(BFD) $(READLINE) \ ADD_FILES = $(REGEX) $(XM_ADD_FILES) $(TM_ADD_FILES) $(NAT_ADD_FILES) ADD_DEPS = $(REGEX1) $(XM_ADD_FILES) $(TM_ADD_FILES) $(NAT_ADD_FILES) -VERSION = 20000105 +VERSION = 20000110 DIST=gdb LINT=/usr/5bin/lint diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c index 37454c5547..6edfc62491 100644 --- a/gdb/breakpoint.c +++ b/gdb/breakpoint.c @@ -5215,10 +5215,10 @@ awatch_command (arg, from_tty) static void until_break_command_continuation (struct continuation_arg *arg) { - /* Do all the exec cleanups, which at this point should only be the - one set up in the first part of the until_break_command - function. */ - do_exec_cleanups (ALL_CLEANUPS); + struct cleanup *cleanups; + + cleanups = (struct cleanup *) arg->data; + do_exec_cleanups (cleanups); } /* ARGSUSED */ @@ -5232,6 +5232,8 @@ until_break_command (arg, from_tty) struct frame_info *prev_frame = get_prev_frame (selected_frame); struct breakpoint *breakpoint; struct cleanup *old_chain; + struct continuation_arg *arg1; + clear_proceed_status (); @@ -5262,7 +5264,7 @@ until_break_command (arg, from_tty) old_chain = make_cleanup ((make_cleanup_func) delete_breakpoint, breakpoint); else - make_exec_cleanup ((make_cleanup_func) delete_breakpoint, breakpoint); + old_chain = make_exec_cleanup ((make_cleanup_func) delete_breakpoint, breakpoint); /* If we are running asynchronously, and the target supports async execution, we are not waiting for the target to stop, in the call @@ -5273,11 +5275,16 @@ until_break_command (arg, from_tty) if (event_loop_p && target_can_async_p ()) { - /* In this case we don't need args for the continuation, because - all it needs to do is do the cleanups in the - exec_cleanup_chain, which will be only those inserted by this - function. We can get away by using ALL_CLEANUPS. */ - add_continuation (until_break_command_continuation, NULL); + /* In this case the arg for the continuation is just the point + in the exec_cleanups chain from where to start doing + cleanups, because all the continuation does is the cleanups in + the exec_cleanup_chain. */ + arg1 = + (struct continuation_arg *) xmalloc (sizeof (struct continuation_arg)); + arg1->next = NULL; + arg1->data = (PTR) old_chain; + + add_continuation (until_break_command_continuation, arg1); } /* Keep within the current frame */ diff --git a/gdb/coffread.c b/gdb/coffread.c index 037fb87a0e..4fb426c343 100644 --- a/gdb/coffread.c +++ b/gdb/coffread.c @@ -645,9 +645,9 @@ coff_symfile_read (objfile, mainline) from the section address, rather than as absolute addresses. FIXME: We should use BFD to read the symbol table, and thus avoid this problem. */ - pe_file = ! - ( strncmp (bfd_get_target (objfile->obfd), "pe", 2) - | strncmp (bfd_get_target (objfile->obfd), "epoc-pe", 7)); + pe_file = + strncmp (bfd_get_target (objfile->obfd), "pe", 2) == 0 + || strncmp (bfd_get_target (objfile->obfd), "epoc-pe", 7) == 0; /* End of warning */ diff --git a/gdb/config/i386/i386v42mp.mh b/gdb/config/i386/i386v42mp.mh index 969b257888..6db103573c 100644 --- a/gdb/config/i386/i386v42mp.mh +++ b/gdb/config/i386/i386v42mp.mh @@ -9,5 +9,5 @@ XM_CLIBS= -lsocket -lnsl # appropriate for i386v42mp NAT_FILE= nm-i386v42mp.h NATDEPFILES= corelow.o core-regset.o solib.o fork-child.o i386v4-nat.o \ - procfs.o proc_api.o proc_events.o proc_flags.o proc_why.o + procfs.o proc_api.o proc_events.o proc_flags.o proc_why.o uw-thread.o diff --git a/gdb/config/i386/tm-i386sol2.h b/gdb/config/i386/tm-i386sol2.h index f35912fe6c..5de68cc848 100644 --- a/gdb/config/i386/tm-i386sol2.h +++ b/gdb/config/i386/tm-i386sol2.h @@ -46,18 +46,4 @@ extern char *sunpro_static_transform_name PARAMS ((char *)); #define PIDGET(pid) ((pid) & 0xffff) #define TIDGET(pid) (((pid) >> 16) & 0xffff) -/* Macro to extract carry from given regset. */ -#define PS_FLAG_CARRY 0x1 /* Carry bit in PS */ -#define PROCFS_GET_CARRY(regset) ((regset)[EFL] & PS_FLAG_CARRY) - -#ifdef HAVE_THREAD_DB_LIB - -extern char *solaris_pid_to_str PARAMS ((int pid)); - -#else - -extern char *procfs_pid_to_str PARAMS ((int pid)); - -#endif - #endif /* ifndef TM_I386SOL2_H */ diff --git a/gdb/config/i386/tm-i386v42mp.h b/gdb/config/i386/tm-i386v42mp.h index 29c4ba0495..40d1c129a3 100644 --- a/gdb/config/i386/tm-i386v42mp.h +++ b/gdb/config/i386/tm-i386v42mp.h @@ -26,20 +26,39 @@ #include "i386/tm-i386v4.h" -/* procfs on this architecture has multiple fds (ctl, as, map, status) - including a control fd */ +/* define to select for other sysv4.2mp weirdness (see procfs.c) */ -#ifndef HAVE_MULTIPLE_PROC_FDS -#define HAVE_MULTIPLE_PROC_FDS -#endif +#define UNIXWARE -/* procfs on this architecture communicates with read/write instead - of ioctl */ +/* The following macros extract process and lwp/thread ids from a + composite id. -#define PROCFS_USE_READ_WRITE + For consistency with UnixWare core files, allocate bits 0-15 for + process ids and bits 16 and up for lwp ids. Reserve bit 31 for + negative return values to indicate exceptions, and use bit 30 as a + flag to indicate a user-mode thread, leaving 14 bits for lwp + ids. */ -/* define to select for other sysv4.2mp weirdness */ +/* Number of bits in composite id allocated to process number. */ +#define PIDBITS 16 -#define UNIXWARE +/* Return the process id stored in composite PID. */ +#define PIDGET(PID) (((PID) & ((1 << PIDBITS) - 1))) + +/* Return the thread or lwp id stored in composite PID. */ +#define TIDGET(PID) (((PID) & 0x3fffffff) >> PIDBITS) +#define LIDGET(PID) TIDGET(PID) + +/* Construct a composite id from lwp LID and the process portion of + composite PID. */ +#define MERGEPID(PID, LID) (PIDGET(PID) | ((LID) << PIDBITS)) +#define MKLID(PID, LID) MERGEPID(PID, LID) + +/* Construct a composite id from thread TID and the process portion of + composite PID. */ +#define MKTID(PID, TID) (MERGEPID(PID, TID) | 0x40000000) + +/* Return whether PID contains a user-space thread id. */ +#define ISTID(PID) ((PID) & 0x40000000) #endif /* ifndef TM_I386V42MP_H */ diff --git a/gdb/config/sparc/tm-sun4sol2.h b/gdb/config/sparc/tm-sun4sol2.h index 07b5896fc6..cc3abfcb6f 100644 --- a/gdb/config/sparc/tm-sun4sol2.h +++ b/gdb/config/sparc/tm-sun4sol2.h @@ -79,15 +79,3 @@ extern char *sunpro_static_transform_name PARAMS ((char *)); #define PIDGET(pid) ((pid) & 0xffff) #define TIDGET(pid) (((pid) >> 16) & 0xffff) -/* Macro to extract carry from given regset. */ -#define PROCFS_GET_CARRY(regset) ((regset)[R_PSR] & PS_FLAG_CARRY) - -#ifdef HAVE_THREAD_DB_LIB - -extern char *solaris_pid_to_str PARAMS ((int pid)); - -#else - -extern char *procfs_pid_to_str PARAMS ((int pid)); - -#endif diff --git a/gdb/configure b/gdb/configure index 925f98a315..4d76095961 100755 --- a/gdb/configure +++ b/gdb/configure @@ -78,6 +78,7 @@ program_suffix=NONE program_transform_name=s,x,x, silent= site= +sitefile= srcdir= target=NONE verbose= @@ -192,6 +193,7 @@ Configuration: --help print this message --no-create do not create output files --quiet, --silent do not print \`checking...' messages + --site-file=FILE use FILE as the site file --version print the version of autoconf that created configure Directory and file names: --prefix=PREFIX install architecture-independent files in PREFIX @@ -362,6 +364,11 @@ EOF -site=* | --site=* | --sit=*) site="$ac_optarg" ;; + -site-file | --site-file | --site-fil | --site-fi | --site-f) + ac_prev=sitefile ;; + -site-file=* | --site-file=* | --site-fil=* | --site-fi=* | --site-f=*) + sitefile="$ac_optarg" ;; + -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) ac_prev=srcdir ;; -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) @@ -527,12 +534,16 @@ fi srcdir=`echo "${srcdir}" | sed 's%\([^/]\)/*$%\1%'` # Prefer explicitly selected file to automatically selected ones. -if test -z "$CONFIG_SITE"; then - if test "x$prefix" != xNONE; then - CONFIG_SITE="$prefix/share/config.site $prefix/etc/config.site" - else - CONFIG_SITE="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site" +if test -z "$sitefile"; then + if test -z "$CONFIG_SITE"; then + if test "x$prefix" != xNONE; then + CONFIG_SITE="$prefix/share/config.site $prefix/etc/config.site" + else + CONFIG_SITE="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site" + fi fi +else + CONFIG_SITE="$sitefile" fi for ac_site_file in $CONFIG_SITE; do if test -r "$ac_site_file"; then @@ -576,7 +587,7 @@ fi # Extract the first word of "gcc", so it can be a program name with args. set dummy gcc; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:580: checking for $ac_word" >&5 +echo "configure:591: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -606,7 +617,7 @@ if test -z "$CC"; then # Extract the first word of "cc", so it can be a program name with args. set dummy cc; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:610: checking for $ac_word" >&5 +echo "configure:621: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -657,7 +668,7 @@ fi # Extract the first word of "cl", so it can be a program name with args. set dummy cl; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:661: checking for $ac_word" >&5 +echo "configure:672: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -689,7 +700,7 @@ fi fi echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6 -echo "configure:693: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5 +echo "configure:704: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5 ac_ext=c # CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options. @@ -700,12 +711,12 @@ cross_compiling=$ac_cv_prog_cc_cross cat > conftest.$ac_ext << EOF -#line 704 "configure" +#line 715 "configure" #include "confdefs.h" main(){return(0);} EOF -if { (eval echo configure:709: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:720: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then ac_cv_prog_cc_works=yes # If we can't run a trivial program, we are probably using a cross compiler. if (./conftest; exit) 2>/dev/null; then @@ -731,12 +742,12 @@ if test $ac_cv_prog_cc_works = no; then { echo "configure: error: installation or configuration problem: C compiler cannot create executables." 1>&2; exit 1; } fi echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6 -echo "configure:735: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5 +echo "configure:746: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5 echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6 cross_compiling=$ac_cv_prog_cc_cross echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6 -echo "configure:740: checking whether we are using GNU C" >&5 +echo "configure:751: checking whether we are using GNU C" >&5 if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -745,7 +756,7 @@ else yes; #endif EOF -if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:749: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then +if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:760: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then ac_cv_prog_gcc=yes else ac_cv_prog_gcc=no @@ -764,7 +775,7 @@ ac_test_CFLAGS="${CFLAGS+set}" ac_save_CFLAGS="$CFLAGS" CFLAGS= echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6 -echo "configure:768: checking whether ${CC-cc} accepts -g" >&5 +echo "configure:779: checking whether ${CC-cc} accepts -g" >&5 if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -796,7 +807,7 @@ else fi echo $ac_n "checking how to run the C preprocessor""... $ac_c" 1>&6 -echo "configure:800: checking how to run the C preprocessor" >&5 +echo "configure:811: checking how to run the C preprocessor" >&5 # On Suns, sometimes $CPP names a directory. if test -n "$CPP" && test -d "$CPP"; then CPP= @@ -811,13 +822,13 @@ else # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. cat > conftest.$ac_ext < Syntax Error EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:821: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:832: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then : @@ -828,13 +839,13 @@ else rm -rf conftest* CPP="${CC-cc} -E -traditional-cpp" cat > conftest.$ac_ext < Syntax Error EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:838: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:849: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then : @@ -845,13 +856,13 @@ else rm -rf conftest* CPP="${CC-cc} -nologo -E" cat > conftest.$ac_ext < Syntax Error EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:855: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:866: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then : @@ -876,9 +887,9 @@ fi echo "$ac_t""$CPP" 1>&6 echo $ac_n "checking for AIX""... $ac_c" 1>&6 -echo "configure:880: checking for AIX" >&5 +echo "configure:891: checking for AIX" >&5 cat > conftest.$ac_ext <&6 -echo "configure:904: checking for POSIXized ISC" >&5 +echo "configure:915: checking for POSIXized ISC" >&5 if test -d /etc/conf/kconfig.d && grep _POSIX_VERSION /usr/include/sys/unistd.h >/dev/null 2>&1 then @@ -924,7 +935,7 @@ fi echo $ac_n "checking for ${CC-cc} option to accept ANSI C""... $ac_c" 1>&6 -echo "configure:928: checking for ${CC-cc} option to accept ANSI C" >&5 +echo "configure:939: checking for ${CC-cc} option to accept ANSI C" >&5 if eval "test \"`echo '$''{'am_cv_prog_cc_stdc'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -940,7 +951,7 @@ for ac_arg in "" -qlanglvl=ansi -std1 "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__ do CC="$ac_save_CC $ac_arg" cat > conftest.$ac_ext < #include @@ -977,7 +988,7 @@ return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; ; return 0; } EOF -if { (eval echo configure:981: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:992: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* am_cv_prog_cc_stdc="$ac_arg"; break else @@ -1048,7 +1059,7 @@ else { echo "configure: error: can not run $ac_config_sub" 1>&2; exit 1; } fi echo $ac_n "checking host system type""... $ac_c" 1>&6 -echo "configure:1052: checking host system type" >&5 +echo "configure:1063: checking host system type" >&5 host_alias=$host case "$host_alias" in @@ -1069,7 +1080,7 @@ host_os=`echo $host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'` echo "$ac_t""$host" 1>&6 echo $ac_n "checking target system type""... $ac_c" 1>&6 -echo "configure:1073: checking target system type" >&5 +echo "configure:1084: checking target system type" >&5 target_alias=$target case "$target_alias" in @@ -1087,7 +1098,7 @@ target_os=`echo $target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'` echo "$ac_t""$target" 1>&6 echo $ac_n "checking build system type""... $ac_c" 1>&6 -echo "configure:1091: checking build system type" >&5 +echo "configure:1102: checking build system type" >&5 build_alias=$build case "$build_alias" in @@ -1112,7 +1123,7 @@ test "$host_alias" != "$target_alias" && ALL_LINGUAS= echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6 -echo "configure:1116: checking whether ${MAKE-make} sets \${MAKE}" >&5 +echo "configure:1127: checking whether ${MAKE-make} sets \${MAKE}" >&5 set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -1141,7 +1152,7 @@ fi # Extract the first word of "ranlib", so it can be a program name with args. set dummy ranlib; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:1145: checking for $ac_word" >&5 +echo "configure:1156: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1169,12 +1180,12 @@ else fi echo $ac_n "checking for ANSI C header files""... $ac_c" 1>&6 -echo "configure:1173: checking for ANSI C header files" >&5 +echo "configure:1184: checking for ANSI C header files" >&5 if eval "test \"`echo '$''{'ac_cv_header_stdc'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < #include @@ -1182,7 +1193,7 @@ else #include EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:1186: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:1197: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -1199,7 +1210,7 @@ rm -f conftest* if test $ac_cv_header_stdc = yes; then # SunOS 4.x string.h does not declare mem*, contrary to ANSI. cat > conftest.$ac_ext < EOF @@ -1217,7 +1228,7 @@ fi if test $ac_cv_header_stdc = yes; then # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. cat > conftest.$ac_ext < EOF @@ -1238,7 +1249,7 @@ if test "$cross_compiling" = yes; then : else cat > conftest.$ac_ext < #define ISLOWER(c) ('a' <= (c) && (c) <= 'z') @@ -1249,7 +1260,7 @@ if (XOR (islower (i), ISLOWER (i)) || toupper (i) != TOUPPER (i)) exit(2); exit (0); } EOF -if { (eval echo configure:1253: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:1264: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then : else @@ -1273,12 +1284,12 @@ EOF fi echo $ac_n "checking for working const""... $ac_c" 1>&6 -echo "configure:1277: checking for working const" >&5 +echo "configure:1288: checking for working const" >&5 if eval "test \"`echo '$''{'ac_cv_c_const'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:1342: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ac_cv_c_const=yes else @@ -1348,21 +1359,21 @@ EOF fi echo $ac_n "checking for inline""... $ac_c" 1>&6 -echo "configure:1352: checking for inline" >&5 +echo "configure:1363: checking for inline" >&5 if eval "test \"`echo '$''{'ac_cv_c_inline'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else ac_cv_c_inline=no for ac_kw in inline __inline__ __inline; do cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:1377: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ac_cv_c_inline=$ac_kw; break else @@ -1388,12 +1399,12 @@ EOF esac echo $ac_n "checking for off_t""... $ac_c" 1>&6 -echo "configure:1392: checking for off_t" >&5 +echo "configure:1403: checking for off_t" >&5 if eval "test \"`echo '$''{'ac_cv_type_off_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < #if STDC_HEADERS @@ -1421,12 +1432,12 @@ EOF fi echo $ac_n "checking for size_t""... $ac_c" 1>&6 -echo "configure:1425: checking for size_t" >&5 +echo "configure:1436: checking for size_t" >&5 if eval "test \"`echo '$''{'ac_cv_type_size_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < #if STDC_HEADERS @@ -1456,19 +1467,19 @@ fi # The Ultrix 4.2 mips builtin alloca declared by alloca.h only works # for constant arguments. Useless! echo $ac_n "checking for working alloca.h""... $ac_c" 1>&6 -echo "configure:1460: checking for working alloca.h" >&5 +echo "configure:1471: checking for working alloca.h" >&5 if eval "test \"`echo '$''{'ac_cv_header_alloca_h'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < int main() { char *p = alloca(2 * sizeof(int)); ; return 0; } EOF -if { (eval echo configure:1472: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:1483: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* ac_cv_header_alloca_h=yes else @@ -1489,12 +1500,12 @@ EOF fi echo $ac_n "checking for alloca""... $ac_c" 1>&6 -echo "configure:1493: checking for alloca" >&5 +echo "configure:1504: checking for alloca" >&5 if eval "test \"`echo '$''{'ac_cv_func_alloca_works'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:1537: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* ac_cv_func_alloca_works=yes else @@ -1554,12 +1565,12 @@ EOF echo $ac_n "checking whether alloca needs Cray hooks""... $ac_c" 1>&6 -echo "configure:1558: checking whether alloca needs Cray hooks" >&5 +echo "configure:1569: checking whether alloca needs Cray hooks" >&5 if eval "test \"`echo '$''{'ac_cv_os_cray'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&6 if test $ac_cv_os_cray = yes; then for ac_func in _getb67 GETB67 getb67; do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:1588: checking for $ac_func" >&5 +echo "configure:1599: checking for $ac_func" >&5 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:1627: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -1639,7 +1650,7 @@ done fi echo $ac_n "checking stack direction for C alloca""... $ac_c" 1>&6 -echo "configure:1643: checking stack direction for C alloca" >&5 +echo "configure:1654: checking stack direction for C alloca" >&5 if eval "test \"`echo '$''{'ac_cv_c_stack_direction'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1647,7 +1658,7 @@ else ac_cv_c_stack_direction=0 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:1681: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then ac_cv_c_stack_direction=1 else @@ -1691,17 +1702,17 @@ for ac_hdr in unistd.h do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 -echo "configure:1695: checking for $ac_hdr" >&5 +echo "configure:1706: checking for $ac_hdr" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:1705: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:1716: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -1730,12 +1741,12 @@ done for ac_func in getpagesize do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:1734: checking for $ac_func" >&5 +echo "configure:1745: checking for $ac_func" >&5 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:1773: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -1783,7 +1794,7 @@ fi done echo $ac_n "checking for working mmap""... $ac_c" 1>&6 -echo "configure:1787: checking for working mmap" >&5 +echo "configure:1798: checking for working mmap" >&5 if eval "test \"`echo '$''{'ac_cv_func_mmap_fixed_mapped'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1791,7 +1802,7 @@ else ac_cv_func_mmap_fixed_mapped=no else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:1946: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then ac_cv_func_mmap_fixed_mapped=yes else @@ -1959,17 +1970,17 @@ unistd.h values.h sys/param.h do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 -echo "configure:1963: checking for $ac_hdr" >&5 +echo "configure:1974: checking for $ac_hdr" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:1973: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:1984: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -1999,12 +2010,12 @@ done __argz_count __argz_stringify __argz_next do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:2003: checking for $ac_func" >&5 +echo "configure:2014: checking for $ac_func" >&5 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:2042: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -2056,12 +2067,12 @@ done for ac_func in stpcpy do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:2060: checking for $ac_func" >&5 +echo "configure:2071: checking for $ac_func" >&5 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:2099: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -2118,19 +2129,19 @@ EOF if test $ac_cv_header_locale_h = yes; then echo $ac_n "checking for LC_MESSAGES""... $ac_c" 1>&6 -echo "configure:2122: checking for LC_MESSAGES" >&5 +echo "configure:2133: checking for LC_MESSAGES" >&5 if eval "test \"`echo '$''{'am_cv_val_LC_MESSAGES'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < int main() { return LC_MESSAGES ; return 0; } EOF -if { (eval echo configure:2134: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:2145: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* am_cv_val_LC_MESSAGES=yes else @@ -2151,7 +2162,7 @@ EOF fi fi echo $ac_n "checking whether NLS is requested""... $ac_c" 1>&6 -echo "configure:2155: checking whether NLS is requested" >&5 +echo "configure:2166: checking whether NLS is requested" >&5 # Check whether --enable-nls or --disable-nls was given. if test "${enable_nls+set}" = set; then enableval="$enable_nls" @@ -2171,7 +2182,7 @@ fi EOF echo $ac_n "checking whether included gettext is requested""... $ac_c" 1>&6 -echo "configure:2175: checking whether included gettext is requested" >&5 +echo "configure:2186: checking whether included gettext is requested" >&5 # Check whether --with-included-gettext or --without-included-gettext was given. if test "${with_included_gettext+set}" = set; then withval="$with_included_gettext" @@ -2190,17 +2201,17 @@ fi ac_safe=`echo "libintl.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for libintl.h""... $ac_c" 1>&6 -echo "configure:2194: checking for libintl.h" >&5 +echo "configure:2205: checking for libintl.h" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:2204: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:2215: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -2217,19 +2228,19 @@ fi if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then echo "$ac_t""yes" 1>&6 echo $ac_n "checking for gettext in libc""... $ac_c" 1>&6 -echo "configure:2221: checking for gettext in libc" >&5 +echo "configure:2232: checking for gettext in libc" >&5 if eval "test \"`echo '$''{'gt_cv_func_gettext_libc'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < int main() { return (int) gettext ("") ; return 0; } EOF -if { (eval echo configure:2233: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:2244: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* gt_cv_func_gettext_libc=yes else @@ -2245,7 +2256,7 @@ echo "$ac_t""$gt_cv_func_gettext_libc" 1>&6 if test "$gt_cv_func_gettext_libc" != "yes"; then echo $ac_n "checking for bindtextdomain in -lintl""... $ac_c" 1>&6 -echo "configure:2249: checking for bindtextdomain in -lintl" >&5 +echo "configure:2260: checking for bindtextdomain in -lintl" >&5 ac_lib_var=`echo intl'_'bindtextdomain | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -2253,7 +2264,7 @@ else ac_save_LIBS="$LIBS" LIBS="-lintl $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:2279: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -2280,19 +2291,19 @@ fi if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then echo "$ac_t""yes" 1>&6 echo $ac_n "checking for gettext in libintl""... $ac_c" 1>&6 -echo "configure:2284: checking for gettext in libintl" >&5 +echo "configure:2295: checking for gettext in libintl" >&5 if eval "test \"`echo '$''{'gt_cv_func_gettext_libintl'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:2307: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* gt_cv_func_gettext_libintl=yes else @@ -2320,7 +2331,7 @@ EOF # Extract the first word of "msgfmt", so it can be a program name with args. set dummy msgfmt; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:2324: checking for $ac_word" >&5 +echo "configure:2335: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_MSGFMT'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -2354,12 +2365,12 @@ fi for ac_func in dcgettext do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:2358: checking for $ac_func" >&5 +echo "configure:2369: checking for $ac_func" >&5 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:2397: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -2409,7 +2420,7 @@ done # Extract the first word of "gmsgfmt", so it can be a program name with args. set dummy gmsgfmt; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:2413: checking for $ac_word" >&5 +echo "configure:2424: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_GMSGFMT'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -2445,7 +2456,7 @@ fi # Extract the first word of "xgettext", so it can be a program name with args. set dummy xgettext; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:2449: checking for $ac_word" >&5 +echo "configure:2460: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_XGETTEXT'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -2477,7 +2488,7 @@ else fi cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:2500: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* CATOBJEXT=.gmo DATADIRNAME=share @@ -2517,7 +2528,7 @@ fi # Extract the first word of "msgfmt", so it can be a program name with args. set dummy msgfmt; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:2521: checking for $ac_word" >&5 +echo "configure:2532: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_MSGFMT'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -2551,7 +2562,7 @@ fi # Extract the first word of "gmsgfmt", so it can be a program name with args. set dummy gmsgfmt; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:2555: checking for $ac_word" >&5 +echo "configure:2566: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_GMSGFMT'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -2587,7 +2598,7 @@ fi # Extract the first word of "xgettext", so it can be a program name with args. set dummy xgettext; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:2591: checking for $ac_word" >&5 +echo "configure:2602: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_XGETTEXT'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -2677,7 +2688,7 @@ fi LINGUAS= else echo $ac_n "checking for catalogs to be installed""... $ac_c" 1>&6 -echo "configure:2681: checking for catalogs to be installed" >&5 +echo "configure:2692: checking for catalogs to be installed" >&5 NEW_LINGUAS= for lang in ${LINGUAS=$ALL_LINGUAS}; do case "$ALL_LINGUAS" in @@ -2705,17 +2716,17 @@ echo "configure:2681: checking for catalogs to be installed" >&5 if test "$CATOBJEXT" = ".cat"; then ac_safe=`echo "linux/version.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for linux/version.h""... $ac_c" 1>&6 -echo "configure:2709: checking for linux/version.h" >&5 +echo "configure:2720: checking for linux/version.h" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:2719: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:2730: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -2806,12 +2817,12 @@ fi . ${srcdir}/configure.tgt -for ac_prog in gawk mawk nawk awk +for ac_prog in mawk gawk nawk awk do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:2815: checking for $ac_word" >&5 +echo "configure:2826: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_AWK'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -2852,7 +2863,7 @@ done # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" # ./install, which can be erroneously created by make from ./install.sh. echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6 -echo "configure:2856: checking for a BSD compatible install" >&5 +echo "configure:2867: checking for a BSD compatible install" >&5 if test -z "$INSTALL"; then if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -2913,7 +2924,7 @@ fi # Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args. set dummy ${ac_tool_prefix}ar; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:2917: checking for $ac_word" >&5 +echo "configure:2928: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_AR'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -2945,7 +2956,7 @@ fi # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. set dummy ${ac_tool_prefix}ranlib; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:2949: checking for $ac_word" >&5 +echo "configure:2960: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -2977,7 +2988,7 @@ if test -n "$ac_tool_prefix"; then # Extract the first word of "ranlib", so it can be a program name with args. set dummy ranlib; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:2981: checking for $ac_word" >&5 +echo "configure:2992: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -3014,7 +3025,7 @@ do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:3018: checking for $ac_word" >&5 +echo "configure:3029: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_YACC'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -3066,12 +3077,12 @@ test "$program_transform_name" = "" && program_transform_name="s,x,x," echo $ac_n "checking return type of signal handlers""... $ac_c" 1>&6 -echo "configure:3070: checking return type of signal handlers" >&5 +echo "configure:3081: checking return type of signal handlers" >&5 if eval "test \"`echo '$''{'ac_cv_type_signal'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < #include @@ -3088,7 +3099,7 @@ int main() { int i; ; return 0; } EOF -if { (eval echo configure:3092: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3103: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ac_cv_type_signal=void else @@ -3108,12 +3119,12 @@ EOF echo $ac_n "checking for ANSI C header files""... $ac_c" 1>&6 -echo "configure:3112: checking for ANSI C header files" >&5 +echo "configure:3123: checking for ANSI C header files" >&5 if eval "test \"`echo '$''{'ac_cv_header_stdc'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < #include @@ -3121,7 +3132,7 @@ else #include EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:3125: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:3136: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -3138,7 +3149,7 @@ rm -f conftest* if test $ac_cv_header_stdc = yes; then # SunOS 4.x string.h does not declare mem*, contrary to ANSI. cat > conftest.$ac_ext < EOF @@ -3156,7 +3167,7 @@ fi if test $ac_cv_header_stdc = yes; then # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. cat > conftest.$ac_ext < EOF @@ -3177,7 +3188,7 @@ if test "$cross_compiling" = yes; then : else cat > conftest.$ac_ext < #define ISLOWER(c) ('a' <= (c) && (c) <= 'z') @@ -3188,7 +3199,7 @@ if (XOR (islower (i), ISLOWER (i)) || toupper (i) != TOUPPER (i)) exit(2); exit (0); } EOF -if { (eval echo configure:3192: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:3203: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then : else @@ -3221,17 +3232,17 @@ for ac_hdr in ctype.h curses.h endian.h link.h thread_db.h proc_service.h \ do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 -echo "configure:3225: checking for $ac_hdr" >&5 +echo "configure:3236: checking for $ac_hdr" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:3235: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:3246: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -3258,12 +3269,12 @@ fi done echo $ac_n "checking whether stat file-mode macros are broken""... $ac_c" 1>&6 -echo "configure:3262: checking whether stat file-mode macros are broken" >&5 +echo "configure:3273: checking whether stat file-mode macros are broken" >&5 if eval "test \"`echo '$''{'ac_cv_header_stat_broken'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < #include @@ -3315,12 +3326,12 @@ fi echo $ac_n "checking for working const""... $ac_c" 1>&6 -echo "configure:3319: checking for working const" >&5 +echo "configure:3330: checking for working const" >&5 if eval "test \"`echo '$''{'ac_cv_c_const'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3384: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ac_cv_c_const=yes else @@ -3393,12 +3404,12 @@ fi for ac_func in setpgid sbrk sigaction isascii bzero bcopy btowc poll sigprocmask do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:3397: checking for $ac_func" >&5 +echo "configure:3408: checking for $ac_func" >&5 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:3436: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -3448,19 +3459,19 @@ done # The Ultrix 4.2 mips builtin alloca declared by alloca.h only works # for constant arguments. Useless! echo $ac_n "checking for working alloca.h""... $ac_c" 1>&6 -echo "configure:3452: checking for working alloca.h" >&5 +echo "configure:3463: checking for working alloca.h" >&5 if eval "test \"`echo '$''{'ac_cv_header_alloca_h'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < int main() { char *p = alloca(2 * sizeof(int)); ; return 0; } EOF -if { (eval echo configure:3464: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:3475: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* ac_cv_header_alloca_h=yes else @@ -3481,12 +3492,12 @@ EOF fi echo $ac_n "checking for alloca""... $ac_c" 1>&6 -echo "configure:3485: checking for alloca" >&5 +echo "configure:3496: checking for alloca" >&5 if eval "test \"`echo '$''{'ac_cv_func_alloca_works'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:3529: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* ac_cv_func_alloca_works=yes else @@ -3546,12 +3557,12 @@ EOF echo $ac_n "checking whether alloca needs Cray hooks""... $ac_c" 1>&6 -echo "configure:3550: checking whether alloca needs Cray hooks" >&5 +echo "configure:3561: checking whether alloca needs Cray hooks" >&5 if eval "test \"`echo '$''{'ac_cv_os_cray'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&6 if test $ac_cv_os_cray = yes; then for ac_func in _getb67 GETB67 getb67; do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:3580: checking for $ac_func" >&5 +echo "configure:3591: checking for $ac_func" >&5 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:3619: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -3631,7 +3642,7 @@ done fi echo $ac_n "checking stack direction for C alloca""... $ac_c" 1>&6 -echo "configure:3635: checking stack direction for C alloca" >&5 +echo "configure:3646: checking stack direction for C alloca" >&5 if eval "test \"`echo '$''{'ac_cv_c_stack_direction'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -3639,7 +3650,7 @@ else ac_cv_c_stack_direction=0 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:3673: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then ac_cv_c_stack_direction=1 else @@ -3681,19 +3692,19 @@ fi echo $ac_n "checking for PTRACE_GETXFPREGS""... $ac_c" 1>&6 -echo "configure:3685: checking for PTRACE_GETXFPREGS" >&5 +echo "configure:3696: checking for PTRACE_GETXFPREGS" >&5 if eval "test \"`echo '$''{'gdb_cv_have_ptrace_getxfpregs'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < int main() { PTRACE_GETXFPREGS; ; return 0; } EOF -if { (eval echo configure:3697: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3708: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* gdb_cv_have_ptrace_getxfpregs=yes else @@ -3714,7 +3725,7 @@ EOF fi echo $ac_n "checking for socketpair in -lsocket""... $ac_c" 1>&6 -echo "configure:3718: checking for socketpair in -lsocket" >&5 +echo "configure:3729: checking for socketpair in -lsocket" >&5 ac_lib_var=`echo socket'_'socketpair | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -3722,7 +3733,7 @@ else ac_save_LIBS="$LIBS" LIBS="-lsocket $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:3748: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -3763,12 +3774,12 @@ fi for ac_func in socketpair do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:3767: checking for $ac_func" >&5 +echo "configure:3778: checking for $ac_func" >&5 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:3806: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -3818,12 +3829,12 @@ done echo $ac_n "checking whether malloc must be declared""... $ac_c" 1>&6 -echo "configure:3822: checking whether malloc must be declared" >&5 +echo "configure:3833: checking whether malloc must be declared" >&5 if eval "test \"`echo '$''{'bfd_cv_decl_needed_malloc'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < @@ -3844,7 +3855,7 @@ int main() { char *(*pfn) = (char *(*)) malloc ; return 0; } EOF -if { (eval echo configure:3848: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3859: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* bfd_cv_decl_needed_malloc=no else @@ -3865,12 +3876,12 @@ EOF fi echo $ac_n "checking whether realloc must be declared""... $ac_c" 1>&6 -echo "configure:3869: checking whether realloc must be declared" >&5 +echo "configure:3880: checking whether realloc must be declared" >&5 if eval "test \"`echo '$''{'bfd_cv_decl_needed_realloc'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < @@ -3891,7 +3902,7 @@ int main() { char *(*pfn) = (char *(*)) realloc ; return 0; } EOF -if { (eval echo configure:3895: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3906: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* bfd_cv_decl_needed_realloc=no else @@ -3912,12 +3923,12 @@ EOF fi echo $ac_n "checking whether free must be declared""... $ac_c" 1>&6 -echo "configure:3916: checking whether free must be declared" >&5 +echo "configure:3927: checking whether free must be declared" >&5 if eval "test \"`echo '$''{'bfd_cv_decl_needed_free'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < @@ -3938,7 +3949,7 @@ int main() { char *(*pfn) = (char *(*)) free ; return 0; } EOF -if { (eval echo configure:3942: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3953: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* bfd_cv_decl_needed_free=no else @@ -3959,12 +3970,12 @@ EOF fi echo $ac_n "checking whether strerror must be declared""... $ac_c" 1>&6 -echo "configure:3963: checking whether strerror must be declared" >&5 +echo "configure:3974: checking whether strerror must be declared" >&5 if eval "test \"`echo '$''{'bfd_cv_decl_needed_strerror'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < @@ -3985,7 +3996,7 @@ int main() { char *(*pfn) = (char *(*)) strerror ; return 0; } EOF -if { (eval echo configure:3989: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4000: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* bfd_cv_decl_needed_strerror=no else @@ -4006,12 +4017,12 @@ EOF fi echo $ac_n "checking whether strdup must be declared""... $ac_c" 1>&6 -echo "configure:4010: checking whether strdup must be declared" >&5 +echo "configure:4021: checking whether strdup must be declared" >&5 if eval "test \"`echo '$''{'bfd_cv_decl_needed_strdup'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < @@ -4032,7 +4043,7 @@ int main() { char *(*pfn) = (char *(*)) strdup ; return 0; } EOF -if { (eval echo configure:4036: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4047: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* bfd_cv_decl_needed_strdup=no else @@ -4053,12 +4064,12 @@ EOF fi echo $ac_n "checking whether strstr must be declared""... $ac_c" 1>&6 -echo "configure:4057: checking whether strstr must be declared" >&5 +echo "configure:4068: checking whether strstr must be declared" >&5 if eval "test \"`echo '$''{'bfd_cv_decl_needed_strstr'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < @@ -4079,7 +4090,7 @@ int main() { char *(*pfn) = (char *(*)) strstr ; return 0; } EOF -if { (eval echo configure:4083: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4094: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* bfd_cv_decl_needed_strstr=no else @@ -4106,9 +4117,9 @@ fi # could be expunged. --jsm 1999-03-22 echo $ac_n "checking for HPUX save_state structure""... $ac_c" 1>&6 -echo "configure:4110: checking for HPUX save_state structure" >&5 +echo "configure:4121: checking for HPUX save_state structure" >&5 cat > conftest.$ac_ext < EOF @@ -4123,7 +4134,7 @@ fi rm -f conftest* cat > conftest.$ac_ext < EOF @@ -4190,19 +4201,19 @@ fi if test "$ac_cv_header_sys_procfs_h" = yes; then echo $ac_n "checking for pstatus_t in sys/procfs.h""... $ac_c" 1>&6 -echo "configure:4194: checking for pstatus_t in sys/procfs.h" >&5 +echo "configure:4205: checking for pstatus_t in sys/procfs.h" >&5 if eval "test \"`echo '$''{'bfd_cv_have_sys_procfs_type_pstatus_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < int main() { pstatus_t avar ; return 0; } EOF -if { (eval echo configure:4206: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4217: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* bfd_cv_have_sys_procfs_type_pstatus_t=yes else @@ -4224,19 +4235,19 @@ EOF echo "$ac_t""$bfd_cv_have_sys_procfs_type_pstatus_t" 1>&6 echo $ac_n "checking for prrun_t in sys/procfs.h""... $ac_c" 1>&6 -echo "configure:4228: checking for prrun_t in sys/procfs.h" >&5 +echo "configure:4239: checking for prrun_t in sys/procfs.h" >&5 if eval "test \"`echo '$''{'bfd_cv_have_sys_procfs_type_prrun_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < int main() { prrun_t avar ; return 0; } EOF -if { (eval echo configure:4240: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4251: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* bfd_cv_have_sys_procfs_type_prrun_t=yes else @@ -4258,19 +4269,19 @@ EOF echo "$ac_t""$bfd_cv_have_sys_procfs_type_prrun_t" 1>&6 echo $ac_n "checking for gregset_t in sys/procfs.h""... $ac_c" 1>&6 -echo "configure:4262: checking for gregset_t in sys/procfs.h" >&5 +echo "configure:4273: checking for gregset_t in sys/procfs.h" >&5 if eval "test \"`echo '$''{'bfd_cv_have_sys_procfs_type_gregset_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < int main() { gregset_t avar ; return 0; } EOF -if { (eval echo configure:4274: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4285: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* bfd_cv_have_sys_procfs_type_gregset_t=yes else @@ -4292,19 +4303,19 @@ EOF echo "$ac_t""$bfd_cv_have_sys_procfs_type_gregset_t" 1>&6 echo $ac_n "checking for fpregset_t in sys/procfs.h""... $ac_c" 1>&6 -echo "configure:4296: checking for fpregset_t in sys/procfs.h" >&5 +echo "configure:4307: checking for fpregset_t in sys/procfs.h" >&5 if eval "test \"`echo '$''{'bfd_cv_have_sys_procfs_type_fpregset_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < int main() { fpregset_t avar ; return 0; } EOF -if { (eval echo configure:4308: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4319: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* bfd_cv_have_sys_procfs_type_fpregset_t=yes else @@ -4328,12 +4339,12 @@ EOF echo $ac_n "checking for PIOCSET ioctl entry in sys/procfs.h""... $ac_c" 1>&6 -echo "configure:4332: checking for PIOCSET ioctl entry in sys/procfs.h" >&5 +echo "configure:4343: checking for PIOCSET ioctl entry in sys/procfs.h" >&5 if eval "test \"`echo '$''{'gdb_cv_have_procfs_piocset'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < #include @@ -4346,7 +4357,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:4350: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4361: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* gdb_cv_have_procfs_piocset=yes else @@ -4368,7 +4379,7 @@ EOF fi echo $ac_n "checking for main in -lm""... $ac_c" 1>&6 -echo "configure:4372: checking for main in -lm" >&5 +echo "configure:4383: checking for main in -lm" >&5 ac_lib_var=`echo m'_'main | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -4376,14 +4387,14 @@ else ac_save_LIBS="$LIBS" LIBS="-lm $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:4398: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -4412,7 +4423,7 @@ fi echo $ac_n "checking for wctype in -lc""... $ac_c" 1>&6 -echo "configure:4416: checking for wctype in -lc" >&5 +echo "configure:4427: checking for wctype in -lc" >&5 ac_lib_var=`echo c'_'wctype | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -4420,7 +4431,7 @@ else ac_save_LIBS="$LIBS" LIBS="-lc $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:4446: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -4450,7 +4461,7 @@ if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then else echo "$ac_t""no" 1>&6 echo $ac_n "checking for wctype in -lw""... $ac_c" 1>&6 -echo "configure:4454: checking for wctype in -lw" >&5 +echo "configure:4465: checking for wctype in -lw" >&5 ac_lib_var=`echo w'_'wctype | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -4458,7 +4469,7 @@ else ac_save_LIBS="$LIBS" LIBS="-lw $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:4484: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -4501,12 +4512,12 @@ fi echo $ac_n "checking for long long support in compiler""... $ac_c" 1>&6 -echo "configure:4505: checking for long long support in compiler" >&5 +echo "configure:4516: checking for long long support in compiler" >&5 if eval "test \"`echo '$''{'gdb_cv_c_long_long'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4531: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* gdb_cv_c_long_long=yes else @@ -4538,7 +4549,7 @@ fi echo $ac_n "checking for long long support in printf""... $ac_c" 1>&6 -echo "configure:4542: checking for long long support in printf" >&5 +echo "configure:4553: checking for long long support in printf" >&5 if eval "test \"`echo '$''{'gdb_cv_printf_has_long_long'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -4546,7 +4557,7 @@ else gdb_cv_printf_has_long_long=no else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:4575: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then gdb_cv_printf_has_long_long=yes else @@ -4584,19 +4595,19 @@ echo "$ac_t""$gdb_cv_printf_has_long_long" 1>&6 echo $ac_n "checking for long double support in compiler""... $ac_c" 1>&6 -echo "configure:4588: checking for long double support in compiler" >&5 +echo "configure:4599: checking for long double support in compiler" >&5 if eval "test \"`echo '$''{'ac_cv_c_long_double'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4611: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ac_cv_c_long_double=yes else @@ -4618,7 +4629,7 @@ fi echo $ac_n "checking for long double support in printf""... $ac_c" 1>&6 -echo "configure:4622: checking for long double support in printf" >&5 +echo "configure:4633: checking for long double support in printf" >&5 if eval "test \"`echo '$''{'gdb_cv_printf_has_long_double'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -4626,7 +4637,7 @@ else gdb_cv_printf_has_long_double=no else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:4651: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then gdb_cv_printf_has_long_double=yes else @@ -4660,7 +4671,7 @@ echo "$ac_t""$gdb_cv_printf_has_long_double" 1>&6 echo $ac_n "checking for long double support in scanf""... $ac_c" 1>&6 -echo "configure:4664: checking for long double support in scanf" >&5 +echo "configure:4675: checking for long double support in scanf" >&5 if eval "test \"`echo '$''{'gdb_cv_scanf_has_long_double'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -4668,7 +4679,7 @@ else gdb_cv_scanf_has_long_double=no else cat > conftest.$ac_ext < 3.14159 && f < 3.14160); } EOF -if { (eval echo configure:4682: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:4693: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then gdb_cv_scanf_has_long_double=yes else @@ -4704,17 +4715,17 @@ for ac_hdr in unistd.h do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 -echo "configure:4708: checking for $ac_hdr" >&5 +echo "configure:4719: checking for $ac_hdr" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:4718: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:4729: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -4743,12 +4754,12 @@ done for ac_func in getpagesize do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:4747: checking for $ac_func" >&5 +echo "configure:4758: checking for $ac_func" >&5 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:4786: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -4796,7 +4807,7 @@ fi done echo $ac_n "checking for working mmap""... $ac_c" 1>&6 -echo "configure:4800: checking for working mmap" >&5 +echo "configure:4811: checking for working mmap" >&5 if eval "test \"`echo '$''{'ac_cv_func_mmap_fixed_mapped'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -4804,7 +4815,7 @@ else ac_cv_func_mmap_fixed_mapped=no else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:4959: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then ac_cv_func_mmap_fixed_mapped=yes else @@ -4973,7 +4984,7 @@ if test ${build} = ${host} -a ${host} = ${target} ; then case ${host_os} in hpux*) echo $ac_n "checking for HPUX/OSF thread support""... $ac_c" 1>&6 -echo "configure:4977: checking for HPUX/OSF thread support" >&5 +echo "configure:4988: checking for HPUX/OSF thread support" >&5 if test -f /usr/include/dce/cma_config.h ; then if test "$GCC" = "yes" ; then echo "$ac_t""yes" 1>&6 @@ -4992,7 +5003,7 @@ EOF ;; solaris*) echo $ac_n "checking for Solaris thread debugging library""... $ac_c" 1>&6 -echo "configure:4996: checking for Solaris thread debugging library" >&5 +echo "configure:5007: checking for Solaris thread debugging library" >&5 if test -f /usr/lib/libthread_db.so.1 ; then echo "$ac_t""yes" 1>&6 cat >> confdefs.h <<\EOF @@ -5002,7 +5013,7 @@ EOF CONFIG_OBS="${CONFIG_OBS} sol-thread.o" CONFIG_SRCS="${CONFIG_SRCS} sol-thread.c" echo $ac_n "checking for dlopen in -ldl""... $ac_c" 1>&6 -echo "configure:5006: checking for dlopen in -ldl" >&5 +echo "configure:5017: checking for dlopen in -ldl" >&5 ac_lib_var=`echo dl'_'dlopen | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -5010,7 +5021,7 @@ else ac_save_LIBS="$LIBS" LIBS="-ldl $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5036: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -5053,17 +5064,17 @@ fi # all symbols visible in the dynamic symbol table. hold_ldflags=$LDFLAGS echo $ac_n "checking for the ld -export-dynamic flag""... $ac_c" 1>&6 -echo "configure:5057: checking for the ld -export-dynamic flag" >&5 +echo "configure:5068: checking for the ld -export-dynamic flag" >&5 LDFLAGS="${LDFLAGS} -Wl,-export-dynamic" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5078: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* found=yes else @@ -5082,13 +5093,13 @@ rm -f conftest* # Sun randomly tweaked the prototypes in # at one point. echo $ac_n "checking if is old""... $ac_c" 1>&6 -echo "configure:5086: checking if is old" >&5 +echo "configure:5097: checking if is old" >&5 if eval "test \"`echo '$''{'gdb_cv_proc_service_is_old'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < @@ -5099,7 +5110,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:5103: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:5114: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* gdb_cv_proc_service_is_old=no else @@ -5245,12 +5256,12 @@ fi # In the Cygwin environment, we need some additional flags. echo $ac_n "checking for cygwin""... $ac_c" 1>&6 -echo "configure:5372: checking for cygwin" >&5 +echo "configure:5383: checking for cygwin" >&5 if eval "test \"`echo '$''{'gdb_cv_os_cygwin'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&6 -echo "configure:5411: checking for tgetent in -lncurses" >&5 +echo "configure:5422: checking for tgetent in -lncurses" >&5 ac_lib_var=`echo ncurses'_'tgetent | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -5292,7 +5303,7 @@ else ac_save_LIBS="$LIBS" LIBS="-lncurses $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5441: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -5322,7 +5333,7 @@ if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then else echo "$ac_t""no" 1>&6 echo $ac_n "checking for tgetent in -lHcurses""... $ac_c" 1>&6 -echo "configure:5449: checking for tgetent in -lHcurses" >&5 +echo "configure:5460: checking for tgetent in -lHcurses" >&5 ac_lib_var=`echo Hcurses'_'tgetent | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -5330,7 +5341,7 @@ else ac_save_LIBS="$LIBS" LIBS="-lHcurses $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5479: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -5360,7 +5371,7 @@ if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then else echo "$ac_t""no" 1>&6 echo $ac_n "checking for tgetent in -ltermlib""... $ac_c" 1>&6 -echo "configure:5487: checking for tgetent in -ltermlib" >&5 +echo "configure:5498: checking for tgetent in -ltermlib" >&5 ac_lib_var=`echo termlib'_'tgetent | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -5368,7 +5379,7 @@ else ac_save_LIBS="$LIBS" LIBS="-ltermlib $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5517: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -5398,7 +5409,7 @@ if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then else echo "$ac_t""no" 1>&6 echo $ac_n "checking for tgetent in -ltermcap""... $ac_c" 1>&6 -echo "configure:5525: checking for tgetent in -ltermcap" >&5 +echo "configure:5536: checking for tgetent in -ltermcap" >&5 ac_lib_var=`echo termcap'_'tgetent | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -5406,7 +5417,7 @@ else ac_save_LIBS="$LIBS" LIBS="-ltermcap $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5555: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -5436,7 +5447,7 @@ if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then else echo "$ac_t""no" 1>&6 echo $ac_n "checking for tgetent in -lcurses""... $ac_c" 1>&6 -echo "configure:5563: checking for tgetent in -lcurses" >&5 +echo "configure:5574: checking for tgetent in -lcurses" >&5 ac_lib_var=`echo curses'_'tgetent | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -5444,7 +5455,7 @@ else ac_save_LIBS="$LIBS" LIBS="-lcurses $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5593: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -5474,7 +5485,7 @@ if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then else echo "$ac_t""no" 1>&6 echo $ac_n "checking for tgetent in -lterminfo""... $ac_c" 1>&6 -echo "configure:5601: checking for tgetent in -lterminfo" >&5 +echo "configure:5612: checking for tgetent in -lterminfo" >&5 ac_lib_var=`echo terminfo'_'tgetent | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -5482,7 +5493,7 @@ else ac_save_LIBS="$LIBS" LIBS="-lterminfo $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5631: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -5535,7 +5546,7 @@ fi # libreadline needs libuser32.a in a cygwin environment WIN32LIBS= if test x$gdb_cv_os_cygwin = xyes; then - WIN32LIBS="-luser32" + WIN32LIBS="-luser32 -limagehlp" fi @@ -5545,7 +5556,7 @@ fi # Uses ac_ vars as temps to allow command line to override cache and checks. # --without-x overrides everything else, but does not touch the cache. echo $ac_n "checking for X""... $ac_c" 1>&6 -echo "configure:6756: checking for X" >&5 +echo "configure:6767: checking for X" >&5 # Check whether --with-x or --without-x was given. if test "${with_x+set}" = set; then @@ -5607,12 +5618,12 @@ if test "$ac_x_includes" = NO; then # First, try using that file with no special directory specified. cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:6823: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:6834: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -5681,14 +5692,14 @@ if test "$ac_x_libraries" = NO; then ac_save_LIBS="$LIBS" LIBS="-l$x_direct_test_library $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:6910: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* LIBS="$ac_save_LIBS" # We can link X programs with no special library path. @@ -5968,12 +5979,12 @@ fi echo $ac_n "checking for Cygwin environment""... $ac_c" 1>&6 -echo "configure:7250: checking for Cygwin environment" >&5 +echo "configure:7261: checking for Cygwin environment" >&5 if eval "test \"`echo '$''{'ac_cv_cygwin'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:7277: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ac_cv_cygwin=yes else @@ -6001,19 +6012,19 @@ echo "$ac_t""$ac_cv_cygwin" 1>&6 CYGWIN= test "$ac_cv_cygwin" = yes && CYGWIN=yes echo $ac_n "checking for mingw32 environment""... $ac_c" 1>&6 -echo "configure:7283: checking for mingw32 environment" >&5 +echo "configure:7294: checking for mingw32 environment" >&5 if eval "test \"`echo '$''{'ac_cv_mingw32'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:7306: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ac_cv_mingw32=yes else @@ -6032,7 +6043,7 @@ test "$ac_cv_mingw32" = yes && MINGW32=yes echo $ac_n "checking for executable suffix""... $ac_c" 1>&6 -echo "configure:7314: checking for executable suffix" >&5 +echo "configure:7325: checking for executable suffix" >&5 if eval "test \"`echo '$''{'ac_cv_exeext'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -6042,10 +6053,10 @@ else rm -f conftest* echo 'int main () { return 0; }' > conftest.$ac_ext ac_cv_exeext= - if { (eval echo configure:7324: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then + if { (eval echo configure:7335: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then for file in conftest.*; do case $file in - *.c | *.o | *.obj) ;; + *.c | *.o | *.obj | *.ilk | *.pdb) ;; *) ac_cv_exeext=`echo $file | sed -e s/conftest//` ;; esac done diff --git a/gdb/configure.in b/gdb/configure.in index 4a04927fea..d967116761 100644 --- a/gdb/configure.in +++ b/gdb/configure.in @@ -488,7 +488,7 @@ AC_SUBST(TERM_LIB) # libreadline needs libuser32.a in a cygwin environment WIN32LIBS= if test x$gdb_cv_os_cygwin = xyes; then - WIN32LIBS="-luser32" + WIN32LIBS="-luser32 -limagehlp" fi AC_SUBST(WIN32LIBS) diff --git a/gdb/configure.tgt b/gdb/configure.tgt index e25b363b54..6eac3a442e 100644 --- a/gdb/configure.tgt +++ b/gdb/configure.tgt @@ -169,6 +169,7 @@ mips64*-big-*) gdb_target=bigmips64 ;; mips*-big-*) gdb_target=bigmips ;; mips*-dec-mach3*) gdb_target=mach3 ;; mips*-dec-*) gdb_target=decstation ;; +mips*-*-pe) gdb_target=mips-pe ;; mips64*el-*-ecoff*) gdb_target=embedl64 ;; mips64*-*-ecoff*) gdb_target=embed64 ;; mips64*vr4xxx*el-*-elf*)gdb_target=vr4xxxel ;; diff --git a/gdb/gdbthread.h b/gdb/gdbthread.h index 9010d39b48..b6dbb0b7f7 100644 --- a/gdb/gdbthread.h +++ b/gdb/gdbthread.h @@ -1,5 +1,5 @@ /* Multi-process/thread control defs for GDB, the GNU debugger. - Copyright 1987, 88, 89, 90, 91, 92, 1993, 1998 + Copyright 1987, 88, 89, 90, 91, 92, 1993, 1998, 1999, 2000 Contributed by Lynx Real-Time Systems, Inc. Los Gatos, CA. Free Software Foundation, Inc. @@ -27,31 +27,114 @@ /* For bpstat */ #include "breakpoint.h" -extern void init_thread_list PARAMS ((void)); - -extern void add_thread PARAMS ((int pid)); - -extern void delete_thread PARAMS ((int)); - -extern int thread_id_to_pid PARAMS ((int)); - -extern int in_thread_list PARAMS ((int pid)); - -extern int pid_to_thread_id PARAMS ((int pid)); - -extern int valid_thread_id PARAMS ((int thread)); - -extern void load_infrun_state PARAMS ((int, CORE_ADDR *, CORE_ADDR *, char **, - int *, struct breakpoint **, - struct breakpoint **, CORE_ADDR *, - CORE_ADDR *, CORE_ADDR *, int *, int *, - int *, bpstat *, int *)); - -extern void save_infrun_state PARAMS ((int, CORE_ADDR, CORE_ADDR, char *, - int, struct breakpoint *, - struct breakpoint *, CORE_ADDR, - CORE_ADDR, CORE_ADDR, int, int, - int, bpstat, int)); +struct thread_info +{ + struct thread_info *next; + int pid; /* "Actual process id"; + In fact, this may be overloaded with + kernel thread id, etc. */ + int num; /* Convenient handle (GDB thread id) */ + /* State from wait_for_inferior */ + CORE_ADDR prev_pc; + CORE_ADDR prev_func_start; + char *prev_func_name; + struct breakpoint *step_resume_breakpoint; + struct breakpoint *through_sigtramp_breakpoint; + CORE_ADDR step_range_start; + CORE_ADDR step_range_end; + CORE_ADDR step_frame_address; + int trap_expected; + int handling_longjmp; + int another_trap; + + /* This is set TRUE when a catchpoint of a shared library event + triggers. Since we don't wish to leave the inferior in the + solib hook when we report the event, we step the inferior + back to user code before stopping and reporting the event. */ + int stepping_through_solib_after_catch; + + /* When stepping_through_solib_after_catch is TRUE, this is a + list of the catchpoints that should be reported as triggering + when we finally do stop stepping. */ + bpstat stepping_through_solib_catchpoints; + + /* This is set to TRUE when this thread is in a signal handler + trampoline and we're single-stepping through it. */ + int stepping_through_sigtramp; + + /* Private data used by the target vector implementation. */ + struct private_thread_info *private; +}; + +/* Create an empty thread list, or empty the existing one. */ +extern void init_thread_list (void); + +/* Add a thread to the thread list. + Note that add_thread now returns the handle of the new thread, + so that the caller may initialize the private thread data. */ +extern struct thread_info *add_thread (int pid); + +/* Delete an existing thread list entry. */ +extern void delete_thread (int); + +/* Translate the integer thread id (GDB's homegrown id, not the system's) + into a "pid" (which may be overloaded with extra thread information). */ +extern int thread_id_to_pid (int); + +/* Translate a 'pid' (which may be overloaded with extra thread information) + into the integer thread id (GDB's homegrown id, not the system's). */ +extern int pid_to_thread_id (int pid); + +/* Boolean test for an already-known pid (which may be overloaded with + extra thread information). */ +extern int in_thread_list (int pid); + +/* Boolean test for an already-known thread id (GDB's homegrown id, + not the system's). */ +extern int valid_thread_id (int thread); + +/* Search function to lookup a thread by 'pid'. */ +extern struct thread_info *find_thread_pid (int pid); + +/* Iterator function to call a user-provided callback function + once for each known thread. */ +typedef int (*thread_callback_func) (struct thread_info *, void *); +extern struct thread_info *iterate_over_threads (thread_callback_func, void *); + +/* infrun context switch: save the debugger state for the given thread. */ +extern void save_infrun_state (int pid, + CORE_ADDR prev_pc, + CORE_ADDR prev_func_start, + char *prev_func_name, + int trap_expected, + struct breakpoint *step_resume_breakpoint, + struct breakpoint *through_sigtramp_breakpoint, + CORE_ADDR step_range_start, + CORE_ADDR step_range_end, + CORE_ADDR step_frame_address, + int handling_longjmp, + int another_trap, + int stepping_through_solib_after_catch, + bpstat stepping_through_solib_catchpoints, + int stepping_through_sigtramp); + +/* infrun context switch: load the debugger state previously saved + for the given thread. */ +extern void load_infrun_state (int pid, + CORE_ADDR *prev_pc, + CORE_ADDR *prev_func_start, + char **prev_func_name, + int *trap_expected, + struct breakpoint **step_resume_breakpoint, + struct breakpoint **through_sigtramp_breakpoint, + CORE_ADDR *step_range_start, + CORE_ADDR *step_range_end, + CORE_ADDR *step_frame_address, + int *handling_longjmp, + int *another_trap, + int *stepping_through_solib_affter_catch, + bpstat *stepping_through_solib_catchpoints, + int *stepping_through_sigtramp); /* Commands with a prefix of `thread'. */ extern struct cmd_list_element *thread_cmd_list; diff --git a/gdb/infcmd.c b/gdb/infcmd.c index 489e3b1e12..e61221aaff 100644 --- a/gdb/infcmd.c +++ b/gdb/infcmd.c @@ -478,7 +478,7 @@ step_1 (skip_subroutines, single_inst, count_string) cleanups = make_cleanup ((make_cleanup_func) disable_longjmp_breakpoint, 0); else - make_exec_cleanup ((make_cleanup_func) disable_longjmp_breakpoint, 0); + make_exec_cleanup ((make_cleanup_func) disable_longjmp_breakpoint, 0); } /* In synchronous case, all is well, just use the regular for loop. */ @@ -593,10 +593,12 @@ step_1_continuation (arg) called in case of step n with n>1, after the first step operation has been completed.*/ static void -step_once (int skip_subroutines, int single_inst, int count) +step_once (int skip_subroutines, int single_inst, int count) { - struct continuation_arg *arg1; struct continuation_arg *arg2; - struct continuation_arg *arg3; struct frame_info *frame; + struct continuation_arg *arg1; + struct continuation_arg *arg2; + struct continuation_arg *arg3; + struct frame_info *frame; if (count > 0) { @@ -1049,9 +1051,11 @@ finish_command_continuation (arg) { register struct symbol *function; struct breakpoint *breakpoint; + struct cleanup *cleanups; breakpoint = (struct breakpoint *) arg->data; function = (struct symbol *) (arg->next)->data; + cleanups = (struct cleanup *) (arg->next->next)->data; if (bpstat_find_breakpoint (stop_bpstat, breakpoint) != NULL && function != 0) @@ -1066,7 +1070,7 @@ finish_command_continuation (arg) if (TYPE_CODE (value_type) == TYPE_CODE_VOID) { - do_exec_cleanups (ALL_CLEANUPS); + do_exec_cleanups (cleanups); return; } @@ -1079,7 +1083,7 @@ finish_command_continuation (arg) print_return_value (struct_return, value_type); } - do_exec_cleanups (ALL_CLEANUPS); + do_exec_cleanups (cleanups); } /* "finish": Set a temporary breakpoint at the place @@ -1095,7 +1099,7 @@ finish_command (arg, from_tty) register struct symbol *function; struct breakpoint *breakpoint; struct cleanup *old_chain; - struct continuation_arg *arg1, *arg2; + struct continuation_arg *arg1, *arg2, *arg3; int async_exec = 0; @@ -1137,7 +1141,7 @@ finish_command (arg, from_tty) if (!event_loop_p || !target_can_async_p ()) old_chain = make_cleanup ((make_cleanup_func) delete_breakpoint, breakpoint); else - make_exec_cleanup ((make_cleanup_func) delete_breakpoint, breakpoint); + old_chain = make_exec_cleanup ((make_cleanup_func) delete_breakpoint, breakpoint); /* Find the function we will return from. */ @@ -1161,10 +1165,14 @@ finish_command (arg, from_tty) (struct continuation_arg *) xmalloc (sizeof (struct continuation_arg)); arg2 = (struct continuation_arg *) xmalloc (sizeof (struct continuation_arg)); + arg3 = + (struct continuation_arg *) xmalloc (sizeof (struct continuation_arg)); arg1->next = arg2; - arg2->next = NULL; + arg2->next = arg3; + arg3->next = NULL; arg1->data = (PTR) breakpoint; arg2->data = (PTR) function; + arg3->data = (PTR) old_chain; add_continuation (finish_command_continuation, arg1); } diff --git a/gdb/procfs.c b/gdb/procfs.c index 67d1c3ccd1..d1763869ef 100644 --- a/gdb/procfs.c +++ b/gdb/procfs.c @@ -170,11 +170,7 @@ init_procfs_ops () #ifdef NEW_PROC_API extern int write_with_trace PARAMS ((int, void *, size_t, char *, int)); extern off_t lseek_with_trace PARAMS ((int, off_t, int, char *, int)); - -#if 0 #define write(X,Y,Z) write_with_trace (X, Y, Z, __FILE__, __LINE__) -#endif - #define lseek(X,Y,Z) lseek_with_trace (X, Y, Z, __FILE__, __LINE__) #else extern int ioctl_with_trace PARAMS ((int, long, void *, char *, int)); @@ -183,26 +179,14 @@ extern int ioctl_with_trace PARAMS ((int, long, void *, char *, int)); #define open(X,Y) open_with_trace (X, Y, __FILE__, __LINE__) #define close(X) close_with_trace (X, __FILE__, __LINE__) #define wait(X) wait_with_trace (X, __FILE__, __LINE__) - -#if 0 #define PROCFS_NOTE(X) procfs_note (X, __FILE__, __LINE__) #define PROC_PRETTYFPRINT_STATUS(X,Y,Z,T) \ proc_prettyfprint_status (X, Y, Z, T) -#else -#define PROCFS_NOTE(X) -#define PROC_PRETTYFPRINT_STATUS(X,Y,Z,T) -#endif - #else #define PROCFS_NOTE(X) #define PROC_PRETTYFPRINT_STATUS(X,Y,Z,T) #endif - /* temp: */ -#undef PROCFS_NOTE -#define PROCFS_NOTE(X) - /* suppress */ - /* * World Unification: @@ -297,20 +281,13 @@ typedef prstatus_t gdb_lwpstatus_t; typedef fpregset_t gdb_fpregset_t; #endif -/* The PIDs that we pass to and from GDB will be composed from - the actual PID plus the LWPID. These macros will be used to - compose and decompose them. */ +/* Provide default composite pid manipulation macros for systems that + don't have threads. */ #ifndef PIDGET -#define PIDGET(PID) (((PID) & 0xffff)) -#endif - -#ifndef TIDGET -#define TIDGET(PID) (((PID) & 0x7fffffff) >> 16) -#endif - -#ifndef MERGEPID -#define MERGEPID(PID, TID) (((PID) & 0xffff) | ((TID) << 16)) +#define PIDGET(PID) (PID) +#define TIDGET(PID) (PID) +#define MERGEPID(PID, TID) (PID) #endif typedef struct procinfo { @@ -611,7 +588,7 @@ create_procinfo (pid, tid) { procinfo *pi, *parent; - if (pi = find_procinfo (pid, tid)) + if ((pi = find_procinfo (pid, tid))) return pi; /* Already exists, nothing to do. */ /* find parent before doing malloc, to save having to cleanup */ @@ -959,7 +936,14 @@ proc_flags (pi) return 0; /* FIXME: not a good failure value (but what is?) */ #ifdef NEW_PROC_API +# ifdef UNIXWARE + /* UnixWare 7.1 puts process status flags, e.g. PR_ASYNC, in + pstatus_t and LWP status flags, e.g. PR_STOPPED, in lwpstatus_t. + The two sets of flags don't overlap. */ + return pi->prstatus.pr_flags | pi->prstatus.pr_lwp.pr_flags; +# else return pi->prstatus.pr_lwp.pr_flags; +# endif #else return pi->prstatus.pr_flags; #endif @@ -1093,7 +1077,7 @@ proc_cursig (struct procinfo *pi) } /* - * Function: proc_modify_flags + * Function: proc_modify_flag * * === I appologize for the messiness of this function. * === This is an area where the different versions of @@ -1102,6 +1086,7 @@ proc_cursig (struct procinfo *pi) * Set or reset any of the following process flags: * PR_FORK -- forked child will inherit trace flags * PR_RLC -- traced process runs when last /proc file closed. + * PR_KLC -- traced process is killed when last /proc file closed. * PR_ASYNC -- LWP's get to run/stop independently. * * There are three methods for doing this function: @@ -1113,7 +1098,8 @@ proc_cursig (struct procinfo *pi) * [OSF, Sol5] * * Note: Irix does not define PR_ASYNC. - * Note: OSF is the only one that can ONLY use the oldest method. + * Note: OSF does not define PR_KLC. + * Note: OSF is the only one that can ONLY use the oldest method. * * Arguments: * pi -- the procinfo @@ -1217,6 +1203,9 @@ proc_modify_flag (pi, flag, mode) flag == PR_RLC ? "PR_RLC" : #ifdef PR_ASYNC flag == PR_ASYNC ? "PR_ASYNC" : +#endif +#ifdef PR_KLC + flag == PR_KLC ? "PR_KLC" : #endif "", mode == FLAG_RESET ? "off" : "on"); @@ -1258,6 +1247,42 @@ proc_unset_run_on_last_close (pi) return proc_modify_flag (pi, PR_RLC, FLAG_RESET); } +#ifdef PR_KLC +/* + * Function: proc_set_kill_on_last_close + * + * Set the kill_on_last_close flag. + * Process with all threads will be killed when debugger + * closes all /proc fds (or debugger exits or dies). + * + * Returns non-zero for success, zero for failure. + */ + +int +proc_set_kill_on_last_close (pi) + procinfo *pi; +{ + return proc_modify_flag (pi, PR_KLC, FLAG_SET); +} + +/* + * Function: proc_unset_kill_on_last_close + * + * Reset the kill_on_last_close flag. + * Process will NOT be killed when debugger + * closes its file handles (or exits or dies). + * + * Returns non-zero for success, zero for failure. + */ + +int +proc_unset_kill_on_last_close (pi) + procinfo *pi; +{ + return proc_modify_flag (pi, PR_KLC, FLAG_RESET); +} +#endif /* PR_KLC */ + /* * Function: proc_set_inherit_on_fork * @@ -2601,7 +2626,9 @@ proc_iterate_over_mappings (func) { struct prmap *map; procinfo *pi; +#ifndef NEW_PROC_API /* avoid compiler warning */ int nmaps = 0, i; +#endif int funcstat = 0; int fd, map_fd; char pathname[MAX_PROC_NAME_SIZE]; @@ -3390,7 +3417,6 @@ do_detach (signo) int signo; { procinfo *pi; - long pflags; /* Find procinfo for the main process */ pi = find_procinfo_or_die (PIDGET (inferior_pid), 0); /* FIXME: threads */ @@ -3650,18 +3676,6 @@ wait_again: why = proc_why (pi); what = proc_what (pi); -#if 0 - { - int stopped_pc = read_pc (); - if (stopped_pc != 0x10c68 && - stopped_pc != 0x10c6c && - stopped_pc != 0x10c70 && - stopped_pc != 0x22768 && - stopped_pc != 0x10c74) - printf ("%x,%d,%d\n", stopped_pc, why, what); - } -#endif - if (flags & (PR_STOPPED | PR_ISTOP)) { #ifdef PR_ASYNC @@ -3895,7 +3909,7 @@ wait_again: temp = MERGEPID (pi->pid, temp); if (!in_thread_list (temp)) { - printf_filtered ("[*New %s]\n", + printf_filtered ("[New %s]\n", target_pid_to_str (temp)); add_thread (temp); } @@ -4427,9 +4441,9 @@ unconditionally_kill_inferior (pi) /* FIXME: should we use waitpid to make sure we get the right event? Should we check the returned event? */ { +#if 0 int status, ret; -#if 0 ret = waitpid (pi->pid, &status, 0); #else wait (NULL); @@ -4547,6 +4561,10 @@ procfs_init_inferior (pid) if ((fail = procfs_debug_inferior (pi)) != 0) proc_error (pi, "init_inferior (procfs_debug_inferior)", fail); + /* FIXME: logically, we should really be turning OFF run-on-last-close, + and possibly even turning ON kill-on-last-close at this point. But + I can't make that change without careful testing which I don't have + time to do right now... */ /* Turn on run-on-last-close flag so that the child will die if GDB goes away for some reason. */ if (!proc_set_run_on_last_close (pi)) @@ -4561,7 +4579,7 @@ procfs_init_inferior (pid) #else /* One trap to exec the shell, one to exec the program being debugged. */ startup_inferior (2); -#endif +#endif /* START_INFERIOR_TRAPS_EXPECTED */ } /* diff --git a/gdb/rdi-share/serdrv.c b/gdb/rdi-share/serdrv.c index 43fd5a00f2..9a2992ee10 100644 --- a/gdb/rdi-share/serdrv.c +++ b/gdb/rdi-share/serdrv.c @@ -32,6 +32,8 @@ #include "params.h" #include "logging.h" +extern int baud_rate; /* From gdb/top.c */ + #ifdef COMPILING_ON_WINDOWS # undef ERROR # undef IGNORE @@ -83,8 +85,11 @@ static struct writestate wstate; * The set of parameter options supported by the device */ static unsigned int baud_options[] = { -#ifdef __hpux - 115200, 57600, +#ifdef B115200 || __hpux + 115200, +#endif +#ifdef B57600 || __hpux + 57600, #endif 38400, 19200, 9600 }; @@ -229,6 +234,12 @@ static int SerialOpen(const char *name, const char *arg) printf( "could not understand baud rate %s\n", arg ); #endif } + else if (baud_rate > 0) + { + /* If the user specified a baud rate on the command line "-b" or via + the "set remotebaud" command then try to use that one */ + process_baud_rate( baud_rate ); + } #ifdef COMPILING_ON_WINDOWS { @@ -514,6 +525,13 @@ static int find_baud_rate( unsigned int *speed ) } possibleBaudRates[] = { #if defined(__hpux) {115200,_B115200}, {57600,_B57600}, +#else +#ifdef B115200 + {115200,B115200}, +#endif +#ifdef B57600 + {57600,B57600}, +#endif #endif #ifdef COMPILING_ON_WINDOWS {38400,CBR_38400}, {19200,CBR_19200}, {9600, CBR_9600}, {0,0} diff --git a/gdb/rdi-share/unixcomm.c b/gdb/rdi-share/unixcomm.c index 86bffc045e..708387bb04 100644 --- a/gdb/rdi-share/unixcomm.c +++ b/gdb/rdi-share/unixcomm.c @@ -68,6 +68,7 @@ #define PP_TIMEOUT 1 /* seconds */ #ifdef sun +#define SERIAL_PREFIX "/dev/tty" #define SERPORT1 "/dev/ttya" #define SERPORT2 "/dev/ttyb" #define PARPORT1 "/dev/bpp0" @@ -75,6 +76,7 @@ #endif #ifdef __hpux +#define SERIAL_PREFIX "/dev/tty" #define SERPORT1 "/dev/tty00" #define SERPORT2 "/dev/tty01" #define PARPORT1 "/dev/ptr_parallel" @@ -82,6 +84,7 @@ #endif #ifdef __linux__ +#define SERIAL_PREFIX "/dev/ttyS" #define SERPORT1 "/dev/ttyS0" #define SERPORT2 "/dev/ttyS1" #define PARPORT1 "/dev/par0" @@ -89,6 +92,7 @@ #endif #if defined (__FreeBSD__) || defined (__NetBSD__) || defined (__OpenBSD__) || defined (bsdi) +#define SERIAL_PREFIX "/dev/cuaa" #define SERPORT1 "/dev/cuaa0" #define SERPORT2 "/dev/cuaa1" #define PARPORT1 "/dev/lpt0" @@ -96,14 +100,12 @@ #endif -#define SERIAL_PREFIX "/dev/tty" #if defined(_WIN32) || defined (__CYGWIN32__) +#define SERIAL_PREFIX "com" #define SERPORT1 "com1" #define SERPORT2 "com2" #define PARPORT1 "lpt1" #define PARPORT2 "lpt2" -#undef SERIAL_PREFIX -#define SERIAL_PREFIX "com" #endif diff --git a/gdb/remote.c b/gdb/remote.c index 5264d17dcf..783f75ea28 100644 --- a/gdb/remote.c +++ b/gdb/remote.c @@ -1921,7 +1921,8 @@ remote_open_1 (name, from_tty, target, extended_p) { if (name == 0) error ("To open a remote debug connection, you need to specify what\n\ -serial device is attached to the remote system (e.g. /dev/ttya)."); +serial device is attached to the remote system\n\ +(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.)."); /* See FIXME above */ wait_forever_enabled_p = 1; @@ -2007,7 +2008,8 @@ remote_async_open_1 (name, from_tty, target, extended_p) { if (name == 0) error ("To open a remote debug connection, you need to specify what\n\ -serial device is attached to the remote system (e.g. /dev/ttya)."); +serial device is attached to the remote system\n\ +(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.)."); target_preopen (from_tty); @@ -4855,7 +4857,8 @@ init_remote_ops () remote_ops.to_longname = "Remote serial target in gdb-specific protocol"; remote_ops.to_doc = "Use a remote computer via a serial line, using a gdb-specific protocol.\n\ -Specify the serial device it is connected to (e.g. /dev/ttya)."; +Specify the serial device it is connected to\n\ +(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.)."; remote_ops.to_open = remote_open; remote_ops.to_close = remote_close; remote_ops.to_detach = remote_detach; diff --git a/gdb/target.c b/gdb/target.c index 1b16a2e76f..bf465dd7cf 100644 --- a/gdb/target.c +++ b/gdb/target.c @@ -397,69 +397,181 @@ cleanup_target (t) { #define de_fault(field, value) \ - if (!t->field) t->field = value - - /* FIELD DEFAULT VALUE */ - - de_fault (to_open, (void (*)PARAMS ((char *, int))) tcomplain); - de_fault (to_close, (void (*)PARAMS ((int))) target_ignore); - de_fault (to_attach, maybe_kill_then_attach); - de_fault (to_post_attach, (void (*)PARAMS ((int))) target_ignore); - de_fault (to_require_attach, maybe_kill_then_attach); - de_fault (to_detach, (void (*)PARAMS ((char *, int))) target_ignore); - de_fault (to_require_detach, (void (*)PARAMS ((int, char *, int))) target_ignore); - de_fault (to_resume, (void (*)PARAMS ((int, int, enum target_signal))) noprocess); - de_fault (to_wait, (int (*)PARAMS ((int, struct target_waitstatus *))) noprocess); - de_fault (to_post_wait, (void (*)PARAMS ((int, int))) target_ignore); - de_fault (to_fetch_registers, (void (*)PARAMS ((int))) target_ignore); - de_fault (to_store_registers, (void (*)PARAMS ((int))) noprocess); - de_fault (to_prepare_to_store, (void (*)PARAMS ((void))) noprocess); - de_fault (to_xfer_memory, (int (*)PARAMS ((CORE_ADDR, char *, int, int, struct target_ops *))) nomemory); - de_fault (to_files_info, (void (*)PARAMS ((struct target_ops *))) target_ignore); - de_fault (to_insert_breakpoint, memory_insert_breakpoint); - de_fault (to_remove_breakpoint, memory_remove_breakpoint); - de_fault (to_terminal_init, (void (*)PARAMS ((void))) target_ignore); - de_fault (to_terminal_inferior, (void (*)PARAMS ((void))) target_ignore); - de_fault (to_terminal_ours_for_output, (void (*)PARAMS ((void))) target_ignore); - de_fault (to_terminal_ours, (void (*)PARAMS ((void))) target_ignore); - de_fault (to_terminal_info, default_terminal_info); - de_fault (to_kill, (void (*)PARAMS ((void))) noprocess); - de_fault (to_load, (void (*)PARAMS ((char *, int))) tcomplain); - de_fault (to_lookup_symbol, (int (*)PARAMS ((char *, CORE_ADDR *))) nosymbol); - de_fault (to_create_inferior, maybe_kill_then_create_inferior); - de_fault (to_post_startup_inferior, (void (*)PARAMS ((int))) target_ignore); - de_fault (to_acknowledge_created_inferior, (void (*)PARAMS ((int))) target_ignore); - de_fault (to_clone_and_follow_inferior, default_clone_and_follow_inferior); - de_fault (to_post_follow_inferior_by_clone, (void (*)PARAMS ((void))) target_ignore); - de_fault (to_insert_fork_catchpoint, (int (*)PARAMS ((int))) tcomplain); - de_fault (to_remove_fork_catchpoint, (int (*)PARAMS ((int))) tcomplain); - de_fault (to_insert_vfork_catchpoint, (int (*)PARAMS ((int))) tcomplain); - de_fault (to_remove_vfork_catchpoint, (int (*)PARAMS ((int))) tcomplain); - de_fault (to_has_forked, (int (*)PARAMS ((int, int *))) return_zero); - de_fault (to_has_vforked, (int (*)PARAMS ((int, int *))) return_zero); - de_fault (to_can_follow_vfork_prior_to_exec, (int (*)PARAMS ((void))) return_zero); - de_fault (to_post_follow_vfork, (void (*)PARAMS ((int, int, int, int))) target_ignore); - de_fault (to_insert_exec_catchpoint, (int (*)PARAMS ((int))) tcomplain); - de_fault (to_remove_exec_catchpoint, (int (*)PARAMS ((int))) tcomplain); - de_fault (to_has_execd, (int (*)PARAMS ((int, char **))) return_zero); - de_fault (to_reported_exec_events_per_exec_call, (int (*)PARAMS ((void))) return_one); - de_fault (to_has_syscall_event, (int (*)PARAMS ((int, enum target_waitkind *, int *))) return_zero); - de_fault (to_has_exited, (int (*)PARAMS ((int, int, int *))) return_zero); - de_fault (to_mourn_inferior, (void (*)PARAMS ((void))) noprocess); - de_fault (to_can_run, return_zero); - de_fault (to_notice_signals, (void (*)PARAMS ((int))) target_ignore); - de_fault (to_thread_alive, (int (*)PARAMS ((int))) target_ignore); - de_fault (to_stop, (void (*)PARAMS ((void))) target_ignore); - de_fault (to_query, (int (*)PARAMS ((int /*char */ , char *, char *, int *))) target_ignore); - de_fault (to_rcmd, (void (*) (char *, struct gdb_file *)) tcomplain); - de_fault (to_enable_exception_callback, (struct symtab_and_line * (*)PARAMS ((enum exception_event_kind, int))) nosupport_runtime); - de_fault (to_get_current_exception_event, (struct exception_event_record * (*)PARAMS ((void))) nosupport_runtime); - - de_fault (to_pid_to_exec_file, (char *(*)PARAMS ((int))) return_zero); - de_fault (to_core_file_to_sym_file, (char *(*)PARAMS ((char *))) return_zero); - de_fault (to_can_async_p, (int (*) (void)) return_zero); - de_fault (to_is_async_p, (int (*) (void)) return_zero); - de_fault (to_async, (void (*) (void (*) (enum inferior_event_type, void*), void*)) tcomplain); + if (!t->field) \ + t->field = value + + de_fault (to_open, + (void (*) (char *, int)) + tcomplain); + de_fault (to_close, + (void (*) (int)) + target_ignore); + de_fault (to_attach, + maybe_kill_then_attach); + de_fault (to_post_attach, + (void (*) (int)) + target_ignore); + de_fault (to_require_attach, + maybe_kill_then_attach); + de_fault (to_detach, + (void (*) (char *, int)) + target_ignore); + de_fault (to_require_detach, + (void (*) (int, char *, int)) + target_ignore); + de_fault (to_resume, + (void (*) (int, int, enum target_signal)) + noprocess); + de_fault (to_wait, + (int (*) (int, struct target_waitstatus *)) + noprocess); + de_fault (to_post_wait, + (void (*) (int, int)) + target_ignore); + de_fault (to_fetch_registers, + (void (*) (int)) + target_ignore); + de_fault (to_store_registers, + (void (*) (int)) + noprocess); + de_fault (to_prepare_to_store, + (void (*) (void)) + noprocess); + de_fault (to_xfer_memory, + (int (*) (CORE_ADDR, char *, int, int, struct target_ops *)) + nomemory); + de_fault (to_files_info, + (void (*) (struct target_ops *)) + target_ignore); + de_fault (to_insert_breakpoint, + memory_insert_breakpoint); + de_fault (to_remove_breakpoint, + memory_remove_breakpoint); + de_fault (to_terminal_init, + (void (*) (void)) + target_ignore); + de_fault (to_terminal_inferior, + (void (*) (void)) + target_ignore); + de_fault (to_terminal_ours_for_output, + (void (*) (void)) + target_ignore); + de_fault (to_terminal_ours, + (void (*) (void)) + target_ignore); + de_fault (to_terminal_info, + default_terminal_info); + de_fault (to_kill, + (void (*) (void)) + noprocess); + de_fault (to_load, + (void (*) (char *, int)) + tcomplain); + de_fault (to_lookup_symbol, + (int (*) (char *, CORE_ADDR *)) + nosymbol); + de_fault (to_create_inferior, + maybe_kill_then_create_inferior); + de_fault (to_post_startup_inferior, + (void (*) (int)) + target_ignore); + de_fault (to_acknowledge_created_inferior, + (void (*) (int)) + target_ignore); + de_fault (to_clone_and_follow_inferior, + default_clone_and_follow_inferior); + de_fault (to_post_follow_inferior_by_clone, + (void (*) (void)) + target_ignore); + de_fault (to_insert_fork_catchpoint, + (int (*) (int)) + tcomplain); + de_fault (to_remove_fork_catchpoint, + (int (*) (int)) + tcomplain); + de_fault (to_insert_vfork_catchpoint, + (int (*) (int)) + tcomplain); + de_fault (to_remove_vfork_catchpoint, + (int (*) (int)) + tcomplain); + de_fault (to_has_forked, + (int (*) (int, int *)) + return_zero); + de_fault (to_has_vforked, + (int (*) (int, int *)) + return_zero); + de_fault (to_can_follow_vfork_prior_to_exec, + (int (*) (void)) + return_zero); + de_fault (to_post_follow_vfork, + (void (*) (int, int, int, int)) + target_ignore); + de_fault (to_insert_exec_catchpoint, + (int (*) (int)) + tcomplain); + de_fault (to_remove_exec_catchpoint, + (int (*) (int)) + tcomplain); + de_fault (to_has_execd, + (int (*) (int, char **)) + return_zero); + de_fault (to_reported_exec_events_per_exec_call, + (int (*) (void)) + return_one); + de_fault (to_has_syscall_event, + (int (*) (int, enum target_waitkind *, int *)) + return_zero); + de_fault (to_has_exited, + (int (*) (int, int, int *)) + return_zero); + de_fault (to_mourn_inferior, + (void (*) (void)) + noprocess); + de_fault (to_can_run, + return_zero); + de_fault (to_notice_signals, + (void (*) (int)) + target_ignore); + de_fault (to_thread_alive, + (int (*) (int)) + return_zero); + de_fault (to_find_new_threads, + (void (*) (void)) + target_ignore); + de_fault (to_extra_thread_info, + (char *(*) (struct thread_info *)) + return_zero); + de_fault (to_stop, + (void (*) (void)) + target_ignore); + de_fault (to_query, + (int (*) (int, char *, char *, int *)) + return_zero); + de_fault (to_rcmd, + (void (*) (char *, struct gdb_file *)) + tcomplain); + de_fault (to_enable_exception_callback, + (struct symtab_and_line * (*) (enum exception_event_kind, int)) + nosupport_runtime); + de_fault (to_get_current_exception_event, + (struct exception_event_record * (*) (void)) + nosupport_runtime); + de_fault (to_pid_to_exec_file, + (char *(*) (int)) + return_zero); + de_fault (to_core_file_to_sym_file, + (char *(*) (char *)) + return_zero); + de_fault (to_can_async_p, + (int (*) (void)) + return_zero); + de_fault (to_is_async_p, + (int (*) (void)) + return_zero); + de_fault (to_async, + (void (*) (void (*) (enum inferior_event_type, void*), void*)) + tcomplain); #undef de_fault } @@ -537,6 +649,7 @@ update_current_target () INHERIT (to_thread_alive, t); INHERIT (to_find_new_threads, t); INHERIT (to_pid_to_str, t); + INHERIT (to_extra_thread_info, t); INHERIT (to_stop, t); INHERIT (to_query, t); INHERIT (to_rcmd, t); @@ -2745,6 +2858,14 @@ debug_to_thread_alive (pid) return retval; } +static void +debug_to_find_new_threads () +{ + debug_target.to_find_new_threads (); + + fputs_unfiltered ("target_find_new_threads ()\n", gdb_stdlog); +} + static void debug_to_stop () { @@ -2880,6 +3001,7 @@ setup_target_debug () current_target.to_can_run = debug_to_can_run; current_target.to_notice_signals = debug_to_notice_signals; current_target.to_thread_alive = debug_to_thread_alive; + current_target.to_find_new_threads = debug_to_find_new_threads; current_target.to_stop = debug_to_stop; current_target.to_query = debug_to_query; current_target.to_rcmd = debug_to_rcmd; diff --git a/gdb/target.h b/gdb/target.h index fce6cf9a78..5582223f8a 100644 --- a/gdb/target.h +++ b/gdb/target.h @@ -56,9 +56,9 @@ enum strata enum thread_control_capabilities { - tc_none = 0, /* Default: can't control thread execution. */ - tc_schedlock = 1, /* Can lock the thread scheduler. */ - tc_switch = 2 /* Can switch the running thread on demand. */ + tc_none = 0, /* Default: can't control thread execution. */ + tc_schedlock = 1, /* Can lock the thread scheduler. */ + tc_switch = 2 /* Can switch the running thread on demand. */ }; /* Stuff for target_wait. */ @@ -69,7 +69,8 @@ enum target_waitkind /* The program has exited. The exit status is in value.integer. */ TARGET_WAITKIND_EXITED, - /* The program has stopped with a signal. Which signal is in value.sig. */ + /* The program has stopped with a signal. Which signal is in + value.sig. */ TARGET_WAITKIND_STOPPED, /* The program has terminated with a signal. Which signal is in @@ -80,24 +81,26 @@ enum target_waitkind (e.g. it called load(2) on AIX). */ TARGET_WAITKIND_LOADED, - /* The program has forked. A "related" process' ID is in value.related_pid. - I.e., if the child forks, value.related_pid is the parent's ID. - */ + /* The program has forked. A "related" process' ID is in + value.related_pid. I.e., if the child forks, value.related_pid + is the parent's ID. */ + TARGET_WAITKIND_FORKED, - /* The program has vforked. A "related" process's ID is in value.related_pid. - */ + /* The program has vforked. A "related" process's ID is in + value.related_pid. */ + TARGET_WAITKIND_VFORKED, - /* The program has exec'ed a new executable file. The new file's pathname - is pointed to by value.execd_pathname. - */ + /* The program has exec'ed a new executable file. The new file's + pathname is pointed to by value.execd_pathname. */ + TARGET_WAITKIND_EXECD, - /* The program has entered or returned from a system call. On HP-UX, this - is used in the hardware watchpoint implementation. The syscall's unique - integer ID number is in value.syscall_id; - */ + /* The program has entered or returned from a system call. On + HP-UX, this is used in the hardware watchpoint implementation. + The syscall's unique integer ID number is in value.syscall_id */ + TARGET_WAITKIND_SYSCALL_ENTRY, TARGET_WAITKIND_SYSCALL_RETURN, @@ -114,7 +117,7 @@ enum target_waitkind to the event loop and wait there for another event from the inferior, rather than being stuck in the remote_async_wait() function. This way the event loop is responsive to other events, - like for instance the user typing. */ + like for instance the user typing. */ TARGET_WAITKIND_IGNORE }; @@ -276,24 +279,24 @@ struct target_waitstatus }; /* Possible types of events that the inferior handler will have to - deal with. */ + deal with. */ enum inferior_event_type { - /* There is a request to quit the inferior, abandon it. */ + /* There is a request to quit the inferior, abandon it. */ INF_QUIT_REQ, /* Process a normal inferior event which will result in target_wait - being called. */ + being called. */ INF_REG_EVENT, - /* Deal with an error on the inferior. */ + /* Deal with an error on the inferior. */ INF_ERROR, - /* We are called because a timer went off. */ + /* We are called because a timer went off. */ INF_TIMER, - /* We are called to do stuff after the inferior stops. */ + /* We are called to do stuff after the inferior stops. */ INF_EXEC_COMPLETE, /* We are called to do some stuff after the inferior stops, but we are expected to reenter the proceed() and handle_inferior_event() functions. This is used only in case of - 'step n' like commands. */ + 'step n' like commands. */ INF_EXEC_CONTINUE }; @@ -310,18 +313,20 @@ enum target_signal target_signal_from_name PARAMS ((char *)); /* If certain kinds of activity happen, target_wait should perform callbacks. */ /* Right now we just call (*TARGET_ACTIVITY_FUNCTION) if I/O is possible - on TARGET_ACTIVITY_FD. */ + on TARGET_ACTIVITY_FD. */ extern int target_activity_fd; /* Returns zero to leave the inferior alone, one to interrupt it. */ extern int (*target_activity_function) PARAMS ((void)); +struct thread_info; /* fwd decl for parameter list below: */ + struct target_ops { char *to_shortname; /* Name this target type */ char *to_longname; /* Name for printing */ char *to_doc; /* Documentation. Does not include trailing newline, and starts with a one-line descrip- - tion (probably similar to to_longname). */ + tion (probably similar to to_longname). */ void (*to_open) PARAMS ((char *, int)); void (*to_close) PARAMS ((int)); void (*to_attach) PARAMS ((char *, int)); @@ -368,15 +373,17 @@ struct target_ops not, add INCREMENT to the search address and keep trying until the search address is outside of the range [LORANGE,HIRANGE). - If we don't find anything, set *ADDR_FOUND to (CORE_ADDR)0 and return. */ + If we don't find anything, set *ADDR_FOUND to (CORE_ADDR)0 and + return. */ + void (*to_search) PARAMS ((int len, char *data, char *mask, CORE_ADDR startaddr, int increment, CORE_ADDR lorange, CORE_ADDR hirange, CORE_ADDR * addr_found, char *data_found)); #define target_search(len, data, mask, startaddr, increment, lorange, hirange, addr_found, data_found) \ - (*current_target.to_search) (len, data, mask, startaddr, increment, \ - lorange, hirange, addr_found, data_found) + (*current_target.to_search) (len, data, mask, startaddr, increment, \ + lorange, hirange, addr_found, data_found) #endif /* 0 */ void (*to_files_info) PARAMS ((struct target_ops *)); @@ -415,6 +422,7 @@ struct target_ops int (*to_thread_alive) PARAMS ((int pid)); void (*to_find_new_threads) PARAMS ((void)); char *(*to_pid_to_str) PARAMS ((int)); + char *(*to_extra_thread_info) PARAMS ((struct thread_info *)); void (*to_stop) PARAMS ((void)); int (*to_query) PARAMS ((int /*char */ , char *, char *, int *)); void (*to_rcmd) (char *command, struct gdb_file *output); @@ -438,10 +446,12 @@ struct target_ops /* ASYNC target controls */ int (*to_can_async_p) (void); int (*to_is_async_p) (void); - void (*to_async) (void (*cb) (enum inferior_event_type, void *context), void *context); + void (*to_async) (void (*cb) (enum inferior_event_type, void *context), + void *context); int to_async_mask_value; int to_magic; - /* Need sub-structure for target machine related rather than comm related? */ + /* Need sub-structure for target machine related rather than comm related? + */ }; /* Magic number for checking ops size. If a struct doesn't end with this @@ -475,8 +485,9 @@ extern struct target_stack_item *target_stack; /* The open routine takes the rest of the parameters from the command, and (if successful) pushes a new target onto the stack. Targets should supply this routine, if only to provide an error message. */ + #define target_open(name, from_tty) \ - (*current_target.to_open) (name, from_tty) + (*current_target.to_open) (name, from_tty) /* Does whatever cleanup is required for a target that we are no longer going to be calling. Argument says whether we are quitting gdb and @@ -487,7 +498,7 @@ extern struct target_stack_item *target_stack; do. */ #define target_close(quitting) \ - (*current_target.to_close) (quitting) + (*current_target.to_close) (quitting) /* Attaches to a process on the target side. Arguments are as passed to the `attach' command by the user. This routine can be called @@ -498,16 +509,15 @@ extern struct target_stack_item *target_stack; (without waiting) to an upcoming target_wait call. */ #define target_attach(args, from_tty) \ - (*current_target.to_attach) (args, from_tty) + (*current_target.to_attach) (args, from_tty) /* The target_attach operation places a process under debugger control, and stops the process. This operation provides a target-specific hook that allows the - necessary bookkeeping to be performed after an attach completes. - */ + necessary bookkeeping to be performed after an attach completes. */ #define target_post_attach(pid) \ - (*current_target.to_post_attach) (pid) + (*current_target.to_post_attach) (pid) /* Attaches to a process on the target side, if not already attached. (If already attached, takes no action.) @@ -518,7 +528,7 @@ extern struct target_stack_item *target_stack; actual attach operation. */ #define target_require_attach(args, from_tty) \ - (*current_target.to_require_attach) (args, from_tty) + (*current_target.to_require_attach) (args, from_tty) /* Takes a program previously attached to and detaches it. The program may resume execution (some targets do, some don't) and will @@ -542,8 +552,8 @@ target_detach PARAMS ((char *, int)); ARGS is arguments typed by the user (e.g. a signal to send the process). FROM_TTY says whether to be verbose or not. */ -#define target_require_detach(pid, args, from_tty) \ - (*current_target.to_require_detach) (pid, args, from_tty) +#define target_require_detach(pid, args, from_tty) \ + (*current_target.to_require_detach) (pid, args, from_tty) /* Resume execution of the target process PID. STEP says whether to single-step or to run free; SIGGNAL is the signal to be given to @@ -551,7 +561,7 @@ target_detach PARAMS ((char *, int)); pass TARGET_SIGNAL_DEFAULT. */ #define target_resume(pid, step, siggnal) \ - (*current_target.to_resume) (pid, step, siggnal) + (*current_target.to_resume) (pid, step, siggnal) /* Wait for process pid to do something. Pid = -1 to wait for any pid to do something. Return pid of child, or -1 in case of error; @@ -562,7 +572,7 @@ target_detach PARAMS ((char *, int)); stop_pc, etc., set up. */ #define target_wait(pid, status) \ - (*current_target.to_wait) (pid, status) + (*current_target.to_wait) (pid, status) /* The target_wait operation waits for a process event to occur, and thereby stop the process. @@ -572,23 +582,22 @@ target_detach PARAMS ((char *, int)); knowledge of what earlier events in the sequence have been seen. This operation provides a target-specific hook that allows the - necessary bookkeeping to be performed to track such sequences. - */ + necessary bookkeeping to be performed to track such sequences. */ #define target_post_wait(pid, status) \ - (*current_target.to_post_wait) (pid, status) + (*current_target.to_post_wait) (pid, status) /* Fetch register REGNO, or all regs if regno == -1. No result. */ #define target_fetch_registers(regno) \ - (*current_target.to_fetch_registers) (regno) + (*current_target.to_fetch_registers) (regno) /* Store at least register REGNO, or all regs if REGNO == -1. It can store as many registers as it wants to, so target_prepare_to_store must have been previously called. Calls error() if there are problems. */ #define target_store_registers(regs) \ - (*current_target.to_store_registers) (regs) + (*current_target.to_store_registers) (regs) /* Get ready to modify the registers array. On machines which store individual registers, this doesn't need to do anything. On machines @@ -597,7 +606,7 @@ target_detach PARAMS ((char *, int)); debugged. */ #define target_prepare_to_store() \ - (*current_target.to_prepare_to_store) () + (*current_target.to_prepare_to_store) () extern int target_read_string PARAMS ((CORE_ADDR, char **, int, int *)); @@ -622,7 +631,7 @@ child_xfer_memory PARAMS ((CORE_ADDR, char *, int, int, struct target_ops *)); transfer, the number of bytes actually transfered is returned and ERR is set to 0. When a transfer fails, -1 is returned (the number of bytes actually transfered is not defined) and ERR is set to a - non-zero error indication. */ + non-zero error indication. */ extern int target_read_memory_partial (CORE_ADDR addr, char *buf, int len, int *err); @@ -712,7 +721,7 @@ print_section_info PARAMS ((struct target_ops *, bfd *)); /* Print a line about the current target. */ #define target_files_info() \ - (*current_target.to_files_info) (¤t_target) + (*current_target.to_files_info) (¤t_target) /* Insert a breakpoint at address ADDR in the target machine. SAVE is a pointer to memory allocated for saving the @@ -721,7 +730,7 @@ print_section_info PARAMS ((struct target_ops *, bfd *)); an errno value. */ #define target_insert_breakpoint(addr, save) \ - (*current_target.to_insert_breakpoint) (addr, save) + (*current_target.to_insert_breakpoint) (addr, save) /* Remove a breakpoint at address ADDR in the target machine. SAVE is a pointer to the same save area @@ -729,19 +738,19 @@ print_section_info PARAMS ((struct target_ops *, bfd *)); Result is 0 for success, or an errno value. */ #define target_remove_breakpoint(addr, save) \ - (*current_target.to_remove_breakpoint) (addr, save) + (*current_target.to_remove_breakpoint) (addr, save) /* Initialize the terminal settings we record for the inferior, before we actually run the inferior. */ #define target_terminal_init() \ - (*current_target.to_terminal_init) () + (*current_target.to_terminal_init) () /* Put the inferior's terminal settings into effect. This is preparation for starting or resuming the inferior. */ #define target_terminal_inferior() \ - (*current_target.to_terminal_inferior) () + (*current_target.to_terminal_inferior) () /* Put some of our terminal settings into effect, enough to get proper results from our output, @@ -752,42 +761,42 @@ print_section_info PARAMS ((struct target_ops *, bfd *)); should be called to get back to a normal state of affairs. */ #define target_terminal_ours_for_output() \ - (*current_target.to_terminal_ours_for_output) () + (*current_target.to_terminal_ours_for_output) () /* Put our terminal settings into effect. First record the inferior's terminal settings so they can be restored properly later. */ #define target_terminal_ours() \ - (*current_target.to_terminal_ours) () + (*current_target.to_terminal_ours) () /* Print useful information about our terminal status, if such a thing exists. */ #define target_terminal_info(arg, from_tty) \ - (*current_target.to_terminal_info) (arg, from_tty) + (*current_target.to_terminal_info) (arg, from_tty) /* Kill the inferior process. Make it go away. */ #define target_kill() \ - (*current_target.to_kill) () + (*current_target.to_kill) () -/* Load an executable file into the target process. This is expected to - not only bring new code into the target process, but also to update - GDB's symbol tables to match. */ +/* Load an executable file into the target process. This is expected + to not only bring new code into the target process, but also to + update GDB's symbol tables to match. */ extern void target_load (char *arg, int from_tty); /* Look up a symbol in the target's symbol table. NAME is the symbol - name. ADDRP is a CORE_ADDR * pointing to where the value of the symbol - should be returned. The result is 0 if successful, nonzero if the - symbol does not exist in the target environment. This function should - not call error() if communication with the target is interrupted, since - it is called from symbol reading, but should return nonzero, possibly - doing a complain(). */ + name. ADDRP is a CORE_ADDR * pointing to where the value of the + symbol should be returned. The result is 0 if successful, nonzero + if the symbol does not exist in the target environment. This + function should not call error() if communication with the target + is interrupted, since it is called from symbol reading, but should + return nonzero, possibly doing a complain(). */ -#define target_lookup_symbol(name, addrp) \ - (*current_target.to_lookup_symbol) (name, addrp) +#define target_lookup_symbol(name, addrp) \ + (*current_target.to_lookup_symbol) (name, addrp) /* Start an inferior process and set inferior_pid to its pid. EXEC_FILE is the file to run. @@ -796,7 +805,7 @@ extern void target_load (char *arg, int from_tty); On VxWorks and various standalone systems, we ignore exec_file. */ #define target_create_inferior(exec_file, args, env) \ - (*current_target.to_create_inferior) (exec_file, args, env) + (*current_target.to_create_inferior) (exec_file, args, env) /* Some targets (such as ttrace-based HPUX) don't allow us to request @@ -807,16 +816,16 @@ extern void target_load (char *arg, int from_tty); exec for each of those commands, and we will see each such fork event. Very bad.) - Such targets will supply an appropriate definition for this function. - */ + Such targets will supply an appropriate definition for this function. */ + #define target_post_startup_inferior(pid) \ - (*current_target.to_post_startup_inferior) (pid) + (*current_target.to_post_startup_inferior) (pid) /* On some targets, the sequence of starting up an inferior requires - some synchronization between gdb and the new inferior process, PID. - */ + some synchronization between gdb and the new inferior process, PID. */ + #define target_acknowledge_created_inferior(pid) \ - (*current_target.to_acknowledge_created_inferior) (pid) + (*current_target.to_acknowledge_created_inferior) (pid) /* An inferior process has been created via a fork() or similar system call. This function will clone the debugger, then ensure @@ -827,10 +836,10 @@ extern void target_load (char *arg, int from_tty); to determine which they are, if need be.) (This is not a terribly useful feature without a GUI to prevent - the two debuggers from competing for shell input.) - */ + the two debuggers from competing for shell input.) */ + #define target_clone_and_follow_inferior(child_pid,followed_child) \ - (*current_target.to_clone_and_follow_inferior) (child_pid, followed_child) + (*current_target.to_clone_and_follow_inferior) (child_pid, followed_child) /* This operation is intended to be used as the last in a sequence of steps taken when following both parent and child of a fork. This @@ -840,40 +849,40 @@ extern void target_load (char *arg, int from_tty); clone has attached to it. On some targets, this requires a bit of cleanup to make it work - correctly. - */ + correctly. */ + #define target_post_follow_inferior_by_clone() \ - (*current_target.to_post_follow_inferior_by_clone) () + (*current_target.to_post_follow_inferior_by_clone) () + +/* On some targets, we can catch an inferior fork or vfork event when + it occurs. These functions insert/remove an already-created + catchpoint for such events. */ -/* On some targets, we can catch an inferior fork or vfork event when it - occurs. These functions insert/remove an already-created catchpoint for - such events. - */ #define target_insert_fork_catchpoint(pid) \ - (*current_target.to_insert_fork_catchpoint) (pid) + (*current_target.to_insert_fork_catchpoint) (pid) #define target_remove_fork_catchpoint(pid) \ - (*current_target.to_remove_fork_catchpoint) (pid) + (*current_target.to_remove_fork_catchpoint) (pid) #define target_insert_vfork_catchpoint(pid) \ - (*current_target.to_insert_vfork_catchpoint) (pid) + (*current_target.to_insert_vfork_catchpoint) (pid) #define target_remove_vfork_catchpoint(pid) \ - (*current_target.to_remove_vfork_catchpoint) (pid) + (*current_target.to_remove_vfork_catchpoint) (pid) /* Returns TRUE if PID has invoked the fork() system call. And, also sets CHILD_PID to the process id of the other ("child") - inferior process that was created by that call. - */ + inferior process that was created by that call. */ + #define target_has_forked(pid,child_pid) \ - (*current_target.to_has_forked) (pid,child_pid) + (*current_target.to_has_forked) (pid,child_pid) + +/* Returns TRUE if PID has invoked the vfork() system call. And, + also sets CHILD_PID to the process id of the other ("child") + inferior process that was created by that call. */ -/* Returns TRUE if PID has invoked the vfork() system call. And, - also sets CHILD_PID to the process id of the other ("child") - inferior process that was created by that call. - */ #define target_has_vforked(pid,child_pid) \ - (*current_target.to_has_vforked) (pid,child_pid) + (*current_target.to_has_vforked) (pid,child_pid) /* Some platforms (such as pre-10.20 HP-UX) don't allow us to do anything to a vforked child before it subsequently calls exec(). @@ -882,10 +891,10 @@ extern void target_load (char *arg, int from_tty); This function should be defined to return 1 by those targets which can allow the debugger to immediately follow a vforked - child, and 0 if they cannot. - */ + child, and 0 if they cannot. */ + #define target_can_follow_vfork_prior_to_exec() \ - (*current_target.to_can_follow_vfork_prior_to_exec) () + (*current_target.to_can_follow_vfork_prior_to_exec) () /* An inferior process has been created via a vfork() system call. The debugger has followed the parent, the child, or both. The @@ -893,85 +902,81 @@ extern void target_load (char *arg, int from_tty); target-specific trickery to track the sequence of reported events. If so, this function should be defined by those targets that require the debugger to perform cleanup or initialization after - the vfork follow. - */ + the vfork follow. */ + #define target_post_follow_vfork(parent_pid,followed_parent,child_pid,followed_child) \ - (*current_target.to_post_follow_vfork) (parent_pid,followed_parent,child_pid,followed_child) + (*current_target.to_post_follow_vfork) (parent_pid,followed_parent,child_pid,followed_child) /* On some targets, we can catch an inferior exec event when it - occurs. These functions insert/remove an already-created catchpoint - for such events. - */ + occurs. These functions insert/remove an already-created + catchpoint for such events. */ + #define target_insert_exec_catchpoint(pid) \ - (*current_target.to_insert_exec_catchpoint) (pid) + (*current_target.to_insert_exec_catchpoint) (pid) #define target_remove_exec_catchpoint(pid) \ - (*current_target.to_remove_exec_catchpoint) (pid) + (*current_target.to_remove_exec_catchpoint) (pid) /* Returns TRUE if PID has invoked a flavor of the exec() system call. - And, also sets EXECD_PATHNAME to the pathname of the executable file - that was passed to exec(), and is now being executed. - */ + And, also sets EXECD_PATHNAME to the pathname of the executable + file that was passed to exec(), and is now being executed. */ + #define target_has_execd(pid,execd_pathname) \ - (*current_target.to_has_execd) (pid,execd_pathname) + (*current_target.to_has_execd) (pid,execd_pathname) /* Returns the number of exec events that are reported when a process invokes a flavor of the exec() system call on this target, if exec - events are being reported. - */ + events are being reported. */ + #define target_reported_exec_events_per_exec_call() \ - (*current_target.to_reported_exec_events_per_exec_call) () + (*current_target.to_reported_exec_events_per_exec_call) () /* Returns TRUE if PID has reported a syscall event. And, also sets KIND to the appropriate TARGET_WAITKIND_, and sets SYSCALL_ID to - the unique integer ID of the syscall. - */ + the unique integer ID of the syscall. */ + #define target_has_syscall_event(pid,kind,syscall_id) \ - (*current_target.to_has_syscall_event) (pid,kind,syscall_id) + (*current_target.to_has_syscall_event) (pid,kind,syscall_id) /* Returns TRUE if PID has exited. And, also sets EXIT_STATUS to the - exit code of PID, if any. - */ + exit code of PID, if any. */ + #define target_has_exited(pid,wait_status,exit_status) \ - (*current_target.to_has_exited) (pid,wait_status,exit_status) + (*current_target.to_has_exited) (pid,wait_status,exit_status) /* The debugger has completed a blocking wait() call. There is now - some process event that must be processed. This function should + some process event that must be processed. This function should be defined by those targets that require the debugger to perform - cleanup or internal state changes in response to the process event. - */ + cleanup or internal state changes in response to the process event. */ /* The inferior process has died. Do what is right. */ #define target_mourn_inferior() \ - (*current_target.to_mourn_inferior) () + (*current_target.to_mourn_inferior) () /* Does target have enough data to do a run or attach command? */ #define target_can_run(t) \ - ((t)->to_can_run) () + ((t)->to_can_run) () /* post process changes to signal handling in the inferior. */ #define target_notice_signals(pid) \ - (*current_target.to_notice_signals) (pid) + (*current_target.to_notice_signals) (pid) /* Check to see if a thread is still alive. */ #define target_thread_alive(pid) \ - (*current_target.to_thread_alive) (pid) + (*current_target.to_thread_alive) (pid) /* Query for new threads and add them to the thread list. */ #define target_find_new_threads() \ - do { \ - if (current_target.to_find_new_threads) \ - (*current_target.to_find_new_threads) (); \ - } while (0); + (*current_target.to_find_new_threads) (); \ -/* Make target stop in a continuable fashion. (For instance, under Unix, this - should act like SIGSTOP). This function is normally used by GUIs to - implement a stop button. */ +/* Make target stop in a continuable fashion. (For instance, under + Unix, this should act like SIGSTOP). This function is normally + used by GUIs to implement a stop button. */ #define target_stop current_target.to_stop @@ -980,14 +985,14 @@ extern void target_load (char *arg, int from_tty); should process it. The second argument is a string that specifies which information is desired and the third is a buffer that carries back the response from the target side. The fourth parameter is the size of the - output buffer supplied. */ + output buffer supplied. */ #define target_query(query_type, query, resp_buffer, bufffer_size) \ - (*current_target.to_query) (query_type, query, resp_buffer, bufffer_size) + (*current_target.to_query) (query_type, query, resp_buffer, bufffer_size) /* Send the specified COMMAND to the target's monitor (shell,interpreter) for execution. The result of the query is - placed in OUTBUF. */ + placed in OUTBUF. */ #define target_rcmd(command, outbuf) \ (*current_target.to_rcmd) (command, outbuf) @@ -998,43 +1003,43 @@ extern void target_load (char *arg, int from_tty); Intended mainly for C++, and for those platforms/implementations where such a callback mechanism is available, e.g. HP-UX with ANSI C++ (aCC). Some compilers (e.g. g++) support - different mechanisms for debugging exceptions. */ + different mechanisms for debugging exceptions. */ #define target_enable_exception_callback(kind, enable) \ - (*current_target.to_enable_exception_callback) (kind, enable) + (*current_target.to_enable_exception_callback) (kind, enable) -/* Get the current exception event kind -- throw or catch, etc. */ +/* Get the current exception event kind -- throw or catch, etc. */ #define target_get_current_exception_event() \ - (*current_target.to_get_current_exception_event) () + (*current_target.to_get_current_exception_event) () /* Pointer to next target in the chain, e.g. a core file and an exec file. */ #define target_next \ - (current_target.to_next) + (current_target.to_next) /* Does the target include all of memory, or only part of it? This determines whether we look up the target chain for other parts of memory if this target can't satisfy a request. */ #define target_has_all_memory \ - (current_target.to_has_all_memory) + (current_target.to_has_all_memory) /* Does the target include memory? (Dummy targets don't.) */ #define target_has_memory \ - (current_target.to_has_memory) + (current_target.to_has_memory) /* Does the target have a stack? (Exec files don't, VxWorks doesn't, until we start a process.) */ #define target_has_stack \ - (current_target.to_has_stack) + (current_target.to_has_stack) /* Does the target have registers? (Exec files don't.) */ #define target_has_registers \ - (current_target.to_has_registers) + (current_target.to_has_registers) /* Does the target have execution? Can we make it jump (through hoops), or pop its stack a few times? FIXME: If this is to work that @@ -1044,17 +1049,17 @@ extern void target_load (char *arg, int from_tty); this just tells us whether this target is *capable* of execution. */ #define target_has_execution \ - (current_target.to_has_execution) + (current_target.to_has_execution) /* Can the target support the debugger control of thread execution? a) Can it lock the thread scheduler? b) Can it switch the currently running thread? */ #define target_can_lock_scheduler \ - (current_target.to_has_thread_control & tc_schedlock) + (current_target.to_has_thread_control & tc_schedlock) #define target_can_switch_threads \ - (current_target.to_has_thread_control & tc_switch) + (current_target.to_has_thread_control & tc_switch) /* Can the target support asynchronous execution? */ #define target_can_async_p() (current_target.to_can_async_p ()) @@ -1063,7 +1068,8 @@ extern void target_load (char *arg, int from_tty); #define target_is_async_p() (current_target.to_is_async_p()) /* Put the target in async mode with the specified callback function. */ -#define target_async(CALLBACK,CONTEXT) (current_target.to_async((CALLBACK), (CONTEXT))) +#define target_async(CALLBACK,CONTEXT) \ + (current_target.to_async((CALLBACK), (CONTEXT))) /* This is to be used ONLY within run_stack_dummy(). It provides a workaround, to have inferior function calls done in @@ -1077,10 +1083,10 @@ extern void target_load (char *arg, int from_tty); FIXME ezannoni 1999-12-13: we won't need this once we move the turning async on and off to the single execution commands, - from where it is done currently, in remote_resume().*/ + from where it is done currently, in remote_resume(). */ #define target_async_mask_value \ - (current_target.to_async_mask_value) + (current_target.to_async_mask_value) extern int target_async_mask (int mask); @@ -1095,10 +1101,16 @@ extern void target_link PARAMS ((char *, CORE_ADDR *)); #ifndef target_tid_to_str #define target_tid_to_str(PID) \ - target_pid_to_str (PID) + target_pid_to_str (PID) extern char *normal_pid_to_str PARAMS ((int pid)); #endif +/* Return a short string describing extra information about PID, + e.g. "sleeping", "runnable", "running on LWP 3". Null return value + is okay. */ + +#define target_extra_thread_info(TP) \ + (current_target.to_extra_thread_info (TP)) /* * New Objfile Event Hook: @@ -1127,7 +1139,7 @@ extern void (*target_new_objfile_hook) PARAMS ((struct objfile *)); #ifndef target_pid_or_tid_to_str #define target_pid_or_tid_to_str(ID) \ - target_pid_to_str (ID) + target_pid_to_str (ID) #endif /* Attempts to find the pathname of the executable file @@ -1140,13 +1152,12 @@ extern void (*target_new_objfile_hook) PARAMS ((struct objfile *)); Else, a pointer to a character string containing the pathname is returned. This string should be copied into a buffer by the client if the string will not be immediately used, or if - it must persist. - */ + it must persist. */ #define target_pid_to_exec_file(pid) \ - (current_target.to_pid_to_exec_file) (pid) + (current_target.to_pid_to_exec_file) (pid) -/* Hook to call target-dependant code after reading in a new symbol table. */ +/* Hook to call target-dependant code after reading in a new symbol table. */ #ifndef TARGET_SYMFILE_POSTREAD #define TARGET_SYMFILE_POSTREAD(OBJFILE) @@ -1170,8 +1181,8 @@ extern void (*target_new_objfile_hook) PARAMS ((struct objfile *)); /* HP-UX supplies these operations, which respectively disable and enable the memory page-protections that are used to implement hardware watchpoints - on that platform. See wait_for_inferior's use of these. - */ + on that platform. See wait_for_inferior's use of these. */ + #if !defined(TARGET_DISABLE_HW_WATCHPOINTS) #define TARGET_DISABLE_HW_WATCHPOINTS(pid) #endif @@ -1180,7 +1191,7 @@ extern void (*target_new_objfile_hook) PARAMS ((struct objfile *)); #define TARGET_ENABLE_HW_WATCHPOINTS(pid) #endif -/* Provide defaults for systems that don't support hardware watchpoints. */ +/* Provide defaults for systems that don't support hardware watchpoints. */ #ifndef TARGET_HAS_HARDWARE_WATCHPOINTS @@ -1193,7 +1204,7 @@ extern void (*target_new_objfile_hook) PARAMS ((struct objfile *)); #if !defined(TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT) #define TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT(byte_count) \ - (LONGEST)(byte_count) <= REGISTER_SIZE + (LONGEST)(byte_count) <= REGISTER_SIZE #endif /* However, some addresses may not be profitable to use hardware to watch, @@ -1201,8 +1212,8 @@ extern void (*target_new_objfile_hook) PARAMS ((struct objfile *)); scope, and hence should be unwatched. On some targets, this may have severe performance penalties, such that we might as well use regular watchpoints, and save (possibly precious) hardware watchpoints for other - locations. - */ + locations. */ + #if !defined(TARGET_RANGE_PROFITABLE_FOR_HW_WATCHPOINT) #define TARGET_RANGE_PROFITABLE_FOR_HW_WATCHPOINT(pid,start,len) 0 #endif @@ -1236,8 +1247,8 @@ extern void (*target_new_objfile_hook) PARAMS ((struct objfile *)); /* Sometimes gdb may pick up what appears to be a valid target address from a minimal symbol, but the value really means, essentially, "This is an index into a table which is populated when the inferior - is run. Therefore, do not attempt to use this as a PC." - */ + is run. Therefore, do not attempt to use this as a PC." */ + #if !defined(PC_REQUIRES_RUN_BEFORE_USE) #define PC_REQUIRES_RUN_BEFORE_USE(pc) (0) #endif @@ -1248,8 +1259,7 @@ extern void (*target_new_objfile_hook) PARAMS ((struct objfile *)); On some targets (such as HP-UX 10.20 and earlier), resuming a newly vforked child process after it has exec'd, causes the parent process to resume as well. To prevent the parent from running spontaneously, such targets should - define this to a function that prevents that from happening. - */ + define this to a function that prevents that from happening. */ #if !defined(ENSURE_VFORKING_PARENT_REMAINS_STOPPED) #define ENSURE_VFORKING_PARENT_REMAINS_STOPPED(PID) (0) #endif @@ -1259,8 +1269,8 @@ extern void (*target_new_objfile_hook) PARAMS ((struct objfile *)); On some targets (such as HP-UX 10.20 and earlier), a newly vforked child process must be resumed when it delivers its exec event, before the parent - vfork event will be delivered to us. - */ + vfork event will be delivered to us. */ + #if !defined(RESUME_EXECD_VFORKING_CHILD_TO_GET_PARENT_VFORK) #define RESUME_EXECD_VFORKING_CHILD_TO_GET_PARENT_VFORK() (0) #endif @@ -1328,7 +1338,8 @@ extern int default_memory_insert_breakpoint PARAMS ((CORE_ADDR, char *)); extern breakpoint_from_pc_fn memory_breakpoint_from_pc; #ifndef BREAKPOINT_FROM_PC -#define BREAKPOINT_FROM_PC(pcptr, lenptr) memory_breakpoint_from_pc (pcptr, lenptr) +#define BREAKPOINT_FROM_PC(pcptr, lenptr) \ + memory_breakpoint_from_pc (pcptr, lenptr) #endif @@ -1386,22 +1397,24 @@ extern asection *target_memory_bfd_section; extern void store_waitstatus PARAMS ((struct target_waitstatus *, int)); /* Predicate to target_signal_to_host(). Return non-zero if the enum - targ_signal SIGNO has an equivalent ``host'' representation. */ + targ_signal SIGNO has an equivalent ``host'' representation. */ /* FIXME: cagney/1999-11-22: The name below was chosen in preference to the shorter target_signal_p() because it is far less ambigious. In this context ``target_signal'' refers to GDB's internal representation of the target's set of signals while ``host signal'' - refers to the target operating system's signal. Confused? */ + refers to the target operating system's signal. Confused? */ + extern int target_signal_to_host_p (enum target_signal signo); /* Convert between host signal numbers and enum target_signal's. target_signal_to_host() returns 0 and prints a warning() on GDB's - console if SIGNO has no equivalent host representation. */ + console if SIGNO has no equivalent host representation. */ /* FIXME: cagney/1999-11-22: Here ``host'' is used incorrectly, it is refering to the target operating system's signal numbering. Similarly, ``enum target_signal'' is named incorrectly, ``enum gdb_signal'' would probably be better as it is refering to GDB's - internal representation of a target operating system's signal. */ + internal representation of a target operating system's signal. */ + extern enum target_signal target_signal_from_host PARAMS ((int)); extern int target_signal_to_host PARAMS ((enum target_signal)); @@ -1415,7 +1428,8 @@ extern void push_remote_target PARAMS ((char *name, int from_tty)); #ifndef SOFTWARE_SINGLE_STEP_P #define SOFTWARE_SINGLE_STEP_P 0 -#define SOFTWARE_SINGLE_STEP(sig,bp_p) (internal_error ("SOFTWARE_SINGLE_STEP"), 0) +#define SOFTWARE_SINGLE_STEP(sig,bp_p) \ + (internal_error ("SOFTWARE_SINGLE_STEP"), 0) #endif /* SOFTWARE_SINGLE_STEP_P */ /* Blank target vector entries are initialized to target_ignore. */ diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index 3e622019c3..5d44af639f 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,24 @@ +2000-01-10 Elena Zannoni + + * gdb.base/so-indr-cl.exp: Don't execute the test if not on HPUX. + Don't use xfail's because that affects only the following test. + + * gdb.base/so-impl-ld.exp: Don't execute the tests if not on hpux, + solaris or linux. + + * gdb.base/selftest.exp: Update to reflect changes to main.c. + +2000-01-07 Michael Snyder + + * gdb.base/display.exp: Some yacc parsers like to say + "A syntax error" rather than "A parse error". Accept both. + +2000-01-06 Fernando Nasser + + * gdb.base/default.exp: Remove OS dependent string from "target + remote" test. + * gdb.base/help.exp: Same for "help target remote" test. + 2000-01-04 Elena Zannoni From Jim Kingdon : diff --git a/gdb/testsuite/gdb.base/default.exp b/gdb/testsuite/gdb.base/default.exp index 9395ed9837..6d11effef4 100644 --- a/gdb/testsuite/gdb.base/default.exp +++ b/gdb/testsuite/gdb.base/default.exp @@ -727,7 +727,7 @@ gdb_expect { if ![istarget "*-*-udi*"] then { send_gdb "target remote\n" gdb_expect { - -re "To open a remote debug connection, you need to specify what.*serial.*device is attached to the remote system .e.g. /dev/ttya.*$gdb_prompt $"\ + -re "To open a remote debug connection, you need to specify what.*serial.*device is attached to the remote system .e.g. .*$gdb_prompt $"\ { pass "target remote" } -re ".*A program is being debugged already. Kill it. .y or n.*$" { send_gdb "n\n" diff --git a/gdb/testsuite/gdb.base/display.exp b/gdb/testsuite/gdb.base/display.exp index b502dc6643..b9e42185cb 100644 --- a/gdb/testsuite/gdb.base/display.exp +++ b/gdb/testsuite/gdb.base/display.exp @@ -191,7 +191,7 @@ gdb_test "p/a &sum" ".*= $hex.*.*" # this test will (incorrectly) fail. So use a small number. gdb_test "p/a main+4" ".*= $hex.*<.*>.*" gdb_test "p/a \$pc" ".*= $hex.*.*" -gdb_test "p/a &&j" ".*A parse error.*" +gdb_test "p/a &&j" ".*A .* error in expression.*" # Done! # diff --git a/gdb/testsuite/gdb.base/help.exp b/gdb/testsuite/gdb.base/help.exp index dfd65a2ddc..9c98c7279d 100644 --- a/gdb/testsuite/gdb.base/help.exp +++ b/gdb/testsuite/gdb.base/help.exp @@ -504,7 +504,7 @@ gdb_test "help target core" ".*Use a core file as a target.*Specify the filename # test help target exec gdb_test "help target exec" "Use an executable file as a target..*\[\r\n\]+Specify the filename of the executable file." "help target exec" # test help target remote -gdb_test "help target remote" "Use a remote computer via a serial line, using a gdb-specific protocol..*\[\r\n\]+Specify the serial device it is connected to .e.g. /dev/ttya..*" "help target remote" +gdb_test "help target remote" "Use a remote computer via a serial line, using a gdb-specific protocol..*\[\r\n\]+Specify the serial device it is connected to .e.g. .*" "help target remote" # test help target # the child process target may be "target child" or "target procfs" gdb_test "help target" "Connect to a target machine or process..*\[\r\n\]+The first argument is the type or protocol of the target machine..*\[\r\n\]+Remaining arguments are interpreted by the target protocol. For more.*\[\r\n\]+information on the arguments for a particular protocol, type.*\[\r\n\]+`help target ' followed by the protocol name..*\[\r\n\]+List of target subcommands:.*\[\r\n\]+target exec -- Use an executable file as a target.*\[\r\n\]+Type \"help target\" followed by target subcommand name for full documentation..*\[\r\n\]+Command name abbreviations are allowed if unambiguous." "help target" diff --git a/gdb/testsuite/gdb.base/selftest.exp b/gdb/testsuite/gdb.base/selftest.exp index 72a086e63b..dddb7a4083 100644 --- a/gdb/testsuite/gdb.base/selftest.exp +++ b/gdb/testsuite/gdb.base/selftest.exp @@ -51,9 +51,29 @@ proc do_steps_and_nexts {} { gdb_reinitialize_dir $srcdir/.. - for {set count 0} {$count < 20} {incr count} { + for {set count 0} {$count < 22} {incr count} { send_gdb "list\n" gdb_expect { + -re ".*context = data.*$gdb_prompt $" { + set description "step over context initialization" + set command "step" + } + -re ".*argc = context->argc.*$gdb_prompt $" { + set description "step over argc initialization" + set command "step" + } + -re ".*argv = context->argv.*$gdb_prompt $" { + set description "step over argv initialization" + set command "step" + } + -re ".*quiet = 0.*$gdb_prompt $" { + set description "step over quiet initialization" + set command "step" + } + -re ".*batch = 0.*$gdb_prompt $" { + set description "step over batch initialization" + set command "step" + } -re ".*symarg = NULL.*$gdb_prompt $" { set description "step over symarg initialization" set command "step" @@ -74,10 +94,6 @@ proc do_steps_and_nexts {} { set description "step over ttyarg initialization" set command "step" } - -re ".*interparg = NULL.*$gdb_prompt $" { - set description "step over interparg initialization" - set command "step" - } -re ".*time_at_startup = get_run_time.*$gdb_prompt $" { set description "next over get_run_time and everything it calls" set command "next" @@ -106,10 +122,6 @@ proc do_steps_and_nexts {} { set description "next over conditional stack alignment alloca" set command "next" } - -re ".*SET_TOP_LEVEL.*$gdb_prompt $" { - set description "next over SET_TOP_LEVEL call" - set command "next" - } -re ".*cmdsize = 1.*$gdb_prompt $" { set description "step over cmdsize initialization" set command "next" @@ -199,9 +211,9 @@ proc test_with_self { executable } { "Disassemble main" # Set a breakpoint at main - gdb_test "break main" \ + gdb_test "break captured_main" \ "Breakpoint.*at.* file.*, line.*" \ - "breakpoint in main" + "breakpoint in captured_main" # We'll need this when we send a ^C to GDB. Need to do it before we # run the program and gdb starts saving and restoring tty states. @@ -222,13 +234,13 @@ proc test_with_self { executable } { # so we bump it back up for the duration of this command. set timeout 600 - set description "run until breakpoint at main" + set description "run until breakpoint at captured_main" send_gdb "run -nw\n" gdb_expect { - -re "Starting program.*Breakpoint \[0-9\]+,.*main .argc.*argv.* at .*main.c:.*$gdb_prompt $" { + -re "Starting program.*Breakpoint \[0-9\]+,.*captured_main .data.* at .*main.c:.*$gdb_prompt $" { pass "$description" } - -re "Starting program.*Breakpoint \[0-9\]+,.*main .argc.*argv.*$gdb_prompt $" { + -re "Starting program.*Breakpoint \[0-9\]+,.*captured_main .data.*$gdb_prompt $" { xfail "$description (line numbers scrambled?)" } -re "vfork: No more processes.*$gdb_prompt $" { diff --git a/gdb/testsuite/gdb.base/so-impl-ld.exp b/gdb/testsuite/gdb.base/so-impl-ld.exp index beb2a6ac90..e55cff9e7f 100644 --- a/gdb/testsuite/gdb.base/so-impl-ld.exp +++ b/gdb/testsuite/gdb.base/so-impl-ld.exp @@ -32,9 +32,13 @@ if ![isnative] then { # This test is presently only valid on HP-UX, since it requires # that we use HP-UX-specific compiler & linker options to build # the testcase. -# -setup_xfail "*-*-*" -clear_xfail "hppa*-*-*hpux*" +# Actually this test works on solaris, and linux too. + +if {! ([istarget "hppa*-*-*hpux*"] + || [istarget "sparc-sun-solaris*"] + || [istarget " *-*-linux-gnu"]) } { + return +} set libfile "solib" set testfile "so-impl-ld" @@ -160,3 +164,9 @@ gdb_expect { gdb_exit return 0 + + + + + + diff --git a/gdb/testsuite/gdb.base/so-indr-cl.exp b/gdb/testsuite/gdb.base/so-indr-cl.exp index 6847289474..d67f160a42 100644 --- a/gdb/testsuite/gdb.base/so-indr-cl.exp +++ b/gdb/testsuite/gdb.base/so-indr-cl.exp @@ -33,8 +33,9 @@ if ![isnative] then { # that we use HP-UX-specific compiler & linker options to build # the testcase. # -setup_xfail "*-*-*" -clear_xfail "hppa*-*-*hpux*" +if {! [istarget "hppa*-*-*hpux*"] } { + return +} set libfile "solib" set testfile "so-indr-cl" diff --git a/gdb/testsuite/gdb.threads/pthreads.exp b/gdb/testsuite/gdb.threads/pthreads.exp index 08e4af384d..15a5df8175 100644 --- a/gdb/testsuite/gdb.threads/pthreads.exp +++ b/gdb/testsuite/gdb.threads/pthreads.exp @@ -46,7 +46,7 @@ if [istarget "*-*-linux"] then { set target_cflags "" } set why_msg "unrecognized error" -foreach lib {-lpthreads -lpthread} { +foreach lib {-lpthreads -lpthread -lthread} { set options "debug" lappend options "incdir=${objdir}/${subdir}" lappend options "libs=$lib" diff --git a/gdb/thread.c b/gdb/thread.c index b618afe748..f4b57afc63 100644 --- a/gdb/thread.c +++ b/gdb/thread.c @@ -1,5 +1,5 @@ /* Multi-process/thread control for GDB, the GNU debugger. - Copyright 1986, 1987, 1988, 1993, 1998 + Copyright 1986, 1987, 1988, 1993, 1998, 1999, 2000 Contributed by Lynx Real-Time Systems, Inc. Los Gatos, CA. Free Software Foundation, Inc. @@ -38,41 +38,7 @@ /*#include "lynxos-core.h" */ -struct thread_info - { - struct thread_info *next; - int pid; /* Actual process id */ - int num; /* Convenient handle */ - CORE_ADDR prev_pc; /* State from wait_for_inferior */ - CORE_ADDR prev_func_start; - char *prev_func_name; - struct breakpoint *step_resume_breakpoint; - struct breakpoint *through_sigtramp_breakpoint; - CORE_ADDR step_range_start; - CORE_ADDR step_range_end; - CORE_ADDR step_frame_address; - int trap_expected; - int handling_longjmp; - int another_trap; - - /* This is set TRUE when a catchpoint of a shared library event - triggers. Since we don't wish to leave the inferior in the - solib hook when we report the event, we step the inferior - back to user code before stopping and reporting the event. - */ - int stepping_through_solib_after_catch; - - /* When stepping_through_solib_after_catch is TRUE, this is a - list of the catchpoints that should be reported as triggering - when we finally do stop stepping. - */ - bpstat stepping_through_solib_catchpoints; - - /* This is set to TRUE when this thread is in a signal handler - trampoline and we're single-stepping through it */ - int stepping_through_sigtramp; - - }; +/* Definition of struct thread_info exported to gdbthread.h */ /* Prototypes for exported functions. */ @@ -112,7 +78,10 @@ init_thread_list () highest_thread_num = 0; } -void +/* add_thread now returns a pointer to the new thread_info, + so that back_ends can initialize their private data. */ + +struct thread_info * add_thread (pid) int pid; { @@ -138,6 +107,7 @@ add_thread (pid) tp->stepping_through_sigtramp = 0; tp->next = thread_list; thread_list = tp; + return tp; } void @@ -165,6 +135,11 @@ delete_thread (pid) if (tp->step_resume_breakpoint) delete_breakpoint (tp->step_resume_breakpoint); + /* FIXME: do I ever need to call the back-end to give it a + chance at this private data before deleting the thread? */ + if (tp->private) + free (tp->private); + free (tp); return; @@ -183,6 +158,48 @@ find_thread_id (num) return NULL; } +/* Find a thread_info by matching 'pid'. */ +struct thread_info * +find_thread_pid (pid) + int pid; +{ + struct thread_info *tp; + + for (tp = thread_list; tp; tp = tp->next) + if (tp->pid == pid) + return tp; + + return NULL; +} + +/* + * Thread iterator function. + * + * Calls a callback function once for each thread, so long as + * the callback function returns false. If the callback function + * returns true, the iteration will end and the current thread + * will be returned. This can be useful for implementing a + * search for a thread with arbitrary attributes, or for applying + * some operation to every thread. + * + * FIXME: some of the existing functionality, such as + * "Thread apply all", might be rewritten using this functionality. + */ + +struct thread_info * +iterate_over_threads (callback, data) + int (*callback) (); + void *data; +{ + struct thread_info *tp; + + for (tp = thread_list; tp; tp = tp->next) + if ((*callback) (tp, data)) + return tp; + + return NULL; +} + int valid_thread_id (num) int num; @@ -380,6 +397,7 @@ info_threads_command (arg, from_tty) struct frame_info *cur_frame; int saved_frame_level = selected_frame_level; int counter; + char *extra_info; /* Avoid coredumps which would happen if we tried to access a NULL selected_frame. */ @@ -397,10 +415,16 @@ info_threads_command (arg, from_tty) printf_filtered (" "); #ifdef HPUXHPPA - printf_filtered ("%d %s ", tp->num, target_tid_to_str (tp->pid)); + printf_filtered ("%d %s", tp->num, target_tid_to_str (tp->pid)); #else - printf_filtered ("%d %s ", tp->num, target_pid_to_str (tp->pid)); + printf_filtered ("%d %s", tp->num, target_pid_to_str (tp->pid)); #endif + + extra_info = target_extra_thread_info (tp); + if (extra_info) + printf_filtered (" (%s)", extra_info); + puts_filtered (" "); + switch_to_thread (tp->pid); if (selected_frame) print_only_stack_frame (selected_frame, -1, 0); diff --git a/gdb/win32-nat.c b/gdb/win32-nat.c index b5ef062ed4..a48c86d2ac 100644 --- a/gdb/win32-nat.c +++ b/gdb/win32-nat.c @@ -571,6 +571,15 @@ handle_exception (struct target_waitstatus *ourstatus) ourstatus->value.sig = TARGET_SIGNAL_SEGV; continue_status = DBG_EXCEPTION_NOT_HANDLED; break; + case STATUS_FLOAT_UNDERFLOW: + case STATUS_FLOAT_DIVIDE_BY_ZERO: + case STATUS_FLOAT_OVERFLOW: + case STATUS_INTEGER_DIVIDE_BY_ZERO: + DEBUG_EXCEPT (("gdb: Target exception STACK_OVERFLOW at 0x%08x\n", + current_event.u.Exception.ExceptionRecord.ExceptionAddress)); + ourstatus->value.sig = TARGET_SIGNAL_FPE; + continue_status = DBG_EXCEPTION_NOT_HANDLED; + break; case STATUS_STACK_OVERFLOW: DEBUG_EXCEPT (("gdb: Target exception STACK_OVERFLOW at 0x%08x\n", current_event.u.Exception.ExceptionRecord.ExceptionAddress)); -- 2.34.1