aboutsummaryrefslogtreecommitdiff
path: root/gdb
AgeCommit message (Collapse)AuthorFilesLines
1993-08-02Mon Aug 2 11:30:57 1993 Stu Grossman (grossman at cygnus.com)Stu Grossman4-28/+46
* i386lynx-nat.c, thread.c, thread.h: Update copyrights.
1993-08-02 * gdb.t06/signals.exp: Change xfail from "*-*-*" to be only forJim Kingdon1-0/+7
NO_SINGLE_STEP machines. Fix comment about its cause. Uncomment the `continue' test right after it (also xfailed if NO_SINGLE_STEP).
1993-08-02* Makefile.in (ALLDEPFILES): Add i386lynx-nat.c.Jim Kingdon1-0/+4
1993-08-02Fix sanitizationJim Kingdon1-1/+3
1993-08-02Add i386lynx-nat.c.Stu Grossman1-0/+1
1993-08-02Add thread.c and thread.h.Stu Grossman1-0/+2
1993-08-02Mon Aug 2 08:42:50 1993 Stu Grossman (grossman at cygnus.com)Stu Grossman2-7/+32
* gdbserver/remote-inflow.c (create_inferior): Fix comments, and error msg. Setup seperate process group for child. * (write_inferior_memory): Sleep for 1 second and retry on ptrace failure.
1993-08-02Sun Aug 1 22:58:18 1993 Stu Grossman (grossman at cygnus.com)Stu Grossman5-2/+57
* config/i386/i386lynx.mh (NATDEPFILES): Drop coredep (for now). * config/i386/nm-i386bsd.h: Protect from multiple inclusion. * config/i386/nm-i386lynx.h: Lotsa new host porting stuff. * config/i386/tm-i386lynx.h: Define SAVED_PC_AFTER_CALL and target_pid_to_str.
1993-08-02Sun Aug 1 22:58:18 1993 Stu Grossman (grossman at cygnus.com)Stu Grossman25-55/+674
* Makefile.in (CLIBS): Reorder to make Lynx ld happy. * (HFILES): New file thread.h. * (OBS): New file thread.c. * configure.in: Host config for Lynx/386. * fork-child.c (fork_inferior): Call init_thread_list(). * infrun.c (resume): Add pid to invocation of target_resume(). * (wait_for_inferior): Pay attention to pid from target_wait(). Multi-threading code now uses this to determine what to do. * inftarg.c (child_wait): Conditionalize based on CHILD_WAIT macro. Use target_pid_to_str() macro throughout when printing pid. * inferior.h (child_resume): Add pid to prototype. * hppab-nat.c hppah-nat.c infptrace.c (child_resume): Pass in pid as argument, instead of using inferior_pid. * procfs.c (procfs_resume): Pass in pid as argument. Ignored for now. Use target_pid_to_str() macro throughout for printing process id. * remote-adapt.c (adapt_resume): Pass in pid as argument. * remote-eb.c (eb_resume): Pass in pid as argument. * remote-es.c (es1800_resume): Pass in pid as argument. * remote-hms.c (hms_resume): Pass in pid as argument. * remote-mips.c (mips_resume): Pass in pid as argument. * remote-mm.c (mm_resume): Pass in pid as argument. * remote-monitor.c (monitor_resume): Pass in pid as argument. * remote-nindy.c (nindy_resume): Pass in pid as argument. * remote-sa.sparc.c (remote_resume): Pass in pid as argument. * remote-sim.c (rem_resume): Pass in pid as argument. * remote-sp64sim.c (simif_resume): Pass in pid as argument. * remote-st.c (st2000_resume): Pass in pid as argument. * remote-udi.c (udi_resume): Pass in pid as argument. * remote-vx.c (vx_resume): Pass in pid as argument. * remote-z8k.c (rem_resume): Pass in pid as argument. * remote.c (remote_resume): Pass in pid as argument. * solib.c (solid_create_inferior_hook): Pass inferior_pid to target_resume(). * target.c (normal_pid_to_str): New routine to print out process ID normally. * target.h (struct target_ops): Add pid to prototype at to_resume(). (target_resume): Add pid argument. * (target_pid_to_str): Default definition for normal type pids. * thread.c, thread.c: New modules for multi thread/process control.
1993-08-01Say that bug-gdb is also the place to send requests for help with GDB.John Gilmore2-194/+173
1993-08-01 * Makefile.in (make-proto-gdb-1): Use -f opt on rm of Makefile.Fred Fish2-1/+2
1993-08-01 * h8500-tdep.c: Add parens around a few macro args.Fred Fish2-7/+12
1993-07-31 * TODO: Remove items about unix-to-unix/rapp debugging (now weJim Kingdon2-20/+6
have gdbserver), moving xm files to subdirectory, ptype yylval, and file-local symbols.
1993-07-31* gdb.t17/interrupt.exp: Add xfail for hppa.Jim Kingdon1-2/+6
1993-07-30* stabs.texinfo (Procedures): Improve stuff on nested functions.Jim Kingdon2-6/+37
1993-07-30* gdbtypes.h: Improve comments about C++ methods.Jim Kingdon2-3/+26
1993-07-30 * c-exp.y: Add missing 5th arg for one call to lookup_symbol, castFred Fish2-7/+18
NULL in all other calls to correct pointer types.
1993-07-30 From Jeffrey Law:Jim Kingdon2-1/+37
* tm-hppa.h (TARGET_WRITE_PC): Define. * hppa-tdep.c (hppa_fix_call_dummy): If in a syscall, then return the address of the dummy itself rather than the address of $$dyncall. (target_write_pc): New function to store a new PC.
1993-07-30Fix typo in previous ChangeLog entry.Peter Schauer1-2/+2
1993-07-30 * gdb.t02/whatis.exp, gdb.t03/ptype.exp, gdb.t08/opaque.exp,Peter Schauer1-0/+11
gdb.t09/corefile.exp: Cleanup xfails for fixed mips bugs. * gdb.t13/bitfields.exp, gdbme.c: Examine a variable in the inferior to determine signed-ness of bitfields and use the result to setup the xfail. * gdb.t13/gdbme.c: Add comment to the two indirect call0a lines. * gdb.t13/funcargs.exp: Use it to step until the second indirect call line is reached if necessary.
1993-07-30 * breakpoint.c (breakpoint_re_set_one): Always reparse breakpointPeter Schauer1-0/+11
conditions, they might contain symbol table references. * mipsread.c (parse_symbol): Handle opaque struct definitions and type naming for stTypedef symbols.
1993-07-30* c-exp.y (yylex): Detect C++ nested types.Jim Kingdon2-1/+70
1993-07-30* sp64-tdep.c (sparc64_frame_chain, sparc64_frame_saved_pc): Deleted.David Edelsohn1-0/+13
(dump_ccreg, sparc_print_register_hook): New fns. * remote-sim.h: New file. * remote-sp64sim.h (sim_*): External fns. (simif_*): Internal fns. * config/sparc/sp64.mt: New file. * config/sparc/tm-sp64.h (FRAME_CHAIN, FRAME_SAVED_PC): Deleted. (PRINT_REGISTER_HOOK): Call new fn sparc_print_register_hook.
1993-07-30remote-sim.h: New file.David Edelsohn3-202/+295
remote-sp64sim.h (sim_*): External fns. (simif_*): Internal fns. sp64-tdep.c (sparc64_frame_chain, sparc64_frame_saved_pc): Deleted. (dump_ccreg, sparc_print_register_hook): New fns.
1993-07-30New file remote-sim.h.David Edelsohn1-1/+1
1993-07-30sp64.mt: New file.David Edelsohn3-32/+55
tm-sp64.h (FRAME_CHAIN, FRAME_SAVED_PC): Deleted. (PRINT_REGISTER_HOOK): Call new fn sparc_print_register_hook.
1993-07-30Add ptx.mh to Things-to-keep list.Fred Fish1-0/+1
1993-07-30 * Makefile.in (ALLCONFIG): Add config/i386/ptx.mhFred Fish2-1/+6
1993-07-30Add dfe and include to Things-to-lose list.Fred Fish1-0/+2
1993-07-30 From J. Law:Jim Kingdon3-14/+34
* infcmd.c (read_pc): Remove PA specific code. * tm-hppa.h (TARGET_READ_PC): Define. * hppa-tdep.c (target_read_pc): New function.
1993-07-30Add .Sanitize to Things-to-lose list.Fred Fish29-0/+54
1993-07-30 * paread.c (pa_symtab_read): Put file-local symbols in minimal symbols.Jim Kingdon3-12/+29
* hppa-tdep.c (frame_chain_valid): Check that our function has the same address as _start, not that it must be the same symbol.
1993-07-30* symtab.c (gdb_mangle_name): Deal with it if type lacks a name.Jim Kingdon1-0/+4
1993-07-30 * NEWS: Add note that DEC alpha support is host only, not native.Fred Fish2-0/+7
1993-07-30 * README: Emphasize that C++ support works best with GNU C++ andFred Fish2-0/+25
stabs debugging format. * delta68-nat.c: Add missing FSF copyright.
1993-07-30* paread.c (pa_symtab_read): Put file-local symbols in minimal symbols.Jim Kingdon2-29/+76
1993-07-30* paread.c (pa_symtab_read): Put file-local symbols in minimal symbols.Jim Kingdon1-0/+7
1993-07-30Add remote-inflow-sparc.c and server.h to Things-to-lose list.Fred Fish1-0/+3
1993-07-30Add a4rc.sed, config, cyglogo.eps, and cygref.tex to Things-to-lose list.Fred Fish1-0/+5
1993-07-30Add monitor.mt and tm-monitor.h to Things-to-keep list.Fred Fish1-0/+2
1993-07-30Add delta68.mh, delta68.mt, nm-delta68.h, tm-delta68.h, xm-delta68.h toFred Fish1-0/+5
Things-to-keep list.
1993-07-30 * Makefile.in (ALLDEPFILES): Add delta68-nat.cFred Fish2-1/+9
* Makefile.in (delta68-nat.o): Add dependency.
1993-07-30Add delta68-nat.c to Things-to-keep list.Fred Fish1-0/+1
1993-07-30 * value.h (COERCE_ENUM): Use COERCE_REF to coerce refs; value_indJim Kingdon1-0/+9
was adequate in gdb 3.5 but not now. * valops.c (typecmp): An array in t2 matches a pointer in t1. * valops.c (typecmp): When comparing type1& to type2, compare type1 and type2 as leniently as if we were comparing type1 to type2.
1993-07-30 * cp-valprint.c (cplus_print_value): Don't dump core if theJim Kingdon3-11/+64
baseclass doesn't have a name. * values.c (vb_match): New function, which finds the virtual base class pointer even if the types are nameless. (baseclass_{addr,offset}): Use it.
1993-07-30* gdb.stabs/wierd.exp: New test, for nameless baseclasses.Jim Kingdon3-1/+73
1993-07-29* remote.texi: (MIPS Remote) make docn for set/show timeout,Roland Pesch2-9/+22
retransmit-timeout follow same conventions as for other set/show params
1993-07-29Add alpha directory.Fred Fish1-0/+1
1993-07-29Fix alpha-osf.mh -> alpha-osf1.mhFred Fish1-1/+1
1993-07-29 * hppa-tdep.c: Make "maintenance print unwind" command from oldJim Kingdon2-0/+15
"unwind" command.