* remote-sim.c (init_callbacks): Undo previous change.

This commit is contained in:
Mark Alexander 1997-02-18 21:05:55 +00:00
parent 52cdddd6fc
commit 1387cba164
2 changed files with 11 additions and 3 deletions

View File

@ -1,3 +1,13 @@
Tue Feb 18 13:06:30 1997 Mark Alexander <marka@cygnus.com>
* remote-sim.c (init_callbacks): Undo previous change.
Tue Feb 18 11:13:00 1997 Dawn Perchik <dawn@cygnus.com>
* maint.c: Fix dereference of pointer.
* remote-sim.c: Fix reference of structure member "last_error".
* debugify.c: Include config.h to get ANSI definitions.
Sat Feb 15 17:43:46 1997 Stu Grossman (grossman@critters.cygnus.com)
* remote-vx.c (vx_attach): Fix for PR 11356. Remove code added

View File

@ -137,9 +137,7 @@ init_callbacks ()
gdb_callback.init (&gdb_callback);
gdb_callback.write_stdout = gdb_os_write_stdout;
gdb_callback.printf_filtered = gdb_os_printf_filtered;
/* ??? where'd error come from? */
/*gdb_callback.error = gdb_os_error;*/
gdb_callback.last_errno= gdb_os_error;
gdb_callback.error = gdb_os_error;
sim_set_callbacks (&gdb_callback);
callbacks_initialized = 1;
}