diff options
author | Stu Grossman <grossman@cygnus> | 1993-07-14 21:19:09 +0000 |
---|---|---|
committer | Stu Grossman <grossman@cygnus> | 1993-07-14 21:19:09 +0000 |
commit | ea7f0a9ff347098fdc13feb206871f9203e812cc (patch) | |
tree | 6294e0d15acd8bcdc48eece258b50b5f7d0a240e /gdb | |
parent | 89c789f6fa49b800eb15235e33d608d567146ae0 (diff) | |
download | gdb-ea7f0a9ff347098fdc13feb206871f9203e812cc.zip gdb-ea7f0a9ff347098fdc13feb206871f9203e812cc.tar.gz gdb-ea7f0a9ff347098fdc13feb206871f9203e812cc.tar.bz2 |
Check in ChangeLog entry that got lost.
Fri Jun 25 17:02:45 1993 Stu Grossman (grossman at cygnus.com)
* gdbserver/Makefile.in: Add dependancies on server.h.
* gdbserver/remote-gutils.c: Remove lots of unused functions and
variables.
* gdbserver/remote-inflow.c: Remove lots of unused variables and
#includes. Also, use PTRACE_* symbols instead of constants.
(mywait): Surround calls to wait() with enable/disable_async_io()
so that we can be interrupted from GDB while waiting for the
child. Also, handle child exit more gracefully.
* gdbserver/remote-server.c: Remove lots of unused variables.
Move all extern defs into server.h. Redo main loop so that
failure from getpkt() causes communications to be re-established.
Fix 'k' command so that it restarts the child.
* gdbserver/remote-utils.c: Remove lots of unloved vars and
subrs. Move many extern decls into server.h. (remote_open): For
tcp, seperate usage of proto fd from connected fd. Close proto
fd after getting connection. (putpkt/getpkt): Pay attention to
errors when reading/writing. Report these to the caller. New
routines input_interrupt/enable_async_io/disable_async_io to make
it possible to get an I/O interrupt when data arrives from the
comm link.
* serial.h: New file to contain common defs for all remote files.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index ece8d96..1f17ac8 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -411,6 +411,30 @@ Fri Jun 25 11:22:28 1993 Jim Kingdon (kingdon@lioth.cygnus.com) Fri Jun 25 17:02:45 1993 Stu Grossman (grossman at cygnus.com) + * gdbserver/Makefile.in: Add dependancies on server.h. + * gdbserver/remote-gutils.c: Remove lots of unused functions and + variables. + * gdbserver/remote-inflow.c: Remove lots of unused variables and + #includes. Also, use PTRACE_* symbols instead of constants. + (mywait): Surround calls to wait() with enable/disable_async_io() + so that we can be interrupted from GDB while waiting for the + child. Also, handle child exit more gracefully. + * gdbserver/remote-server.c: Remove lots of unused variables. + Move all extern defs into server.h. Redo main loop so that + failure from getpkt() causes communications to be re-established. + Fix 'k' command so that it restarts the child. + * gdbserver/remote-utils.c: Remove lots of unloved vars and + subrs. Move many extern decls into server.h. (remote_open): For + tcp, seperate usage of proto fd from connected fd. Close proto + fd after getting connection. (putpkt/getpkt): Pay attention to + errors when reading/writing. Report these to the caller. New + routines input_interrupt/enable_async_io/disable_async_io to make + it possible to get an I/O interrupt when data arrives from the + comm link. + * serial.h: New file to contain common defs for all remote files. + +Fri Jun 25 17:02:45 1993 Stu Grossman (grossman at cygnus.com) + * remote.c: Add arg names to prototypes, in a modest effort at clarification. Also add prototypes for some new functions. * (remote_wait): Better error reporting for 'T' responses. @@ -425,6 +449,11 @@ Fri Jun 25 17:02:45 1993 Stu Grossman (grossman at cygnus.com) Fri Jun 25 11:22:28 1993 Jim Kingdon (kingdon@lioth.cygnus.com) + * config/m68k/tm-m68k.h: Remove obsolete comment about duplicating + CALL_DUMMY between different 68k machines. + +Fri Jun 25 11:22:28 1993 Jim Kingdon (kingdon@lioth.cygnus.com) + * Makefile.in (*.tab.c): Use ./c-exp.tab.c not just c-exp.tab.c. Make comment explaining this comprehensible. (TAGFILES): Include ALLDEPFILES. |