aboutsummaryrefslogtreecommitdiff
path: root/gdb/go32-xdep.c
AgeCommit message (Collapse)AuthorFilesLines
1999-05-23Sync up with Cygnus CVS repository (cvs import doesn't handle theseJason Molenda1-35/+0
automatically, alas. This cleanpu must be automated in the near future). Tue Mar 9 19:25:11 1999 Stan Shebs <shebs@andros.cygnus.com> * h8-cfg.texi: Remove, hasn't been used in years. 1999-05-10 Martin Hunt <hunt@cygnus.com> * debugify.c, debugify.h: Removed because they are no longer used. Tue Mar 16 15:29:04 1999 Stan Shebs <shebs@andros.cygnus.com> * go32-xdep.c: Remove, no longer used by anything.
1999-04-16Initial creation of sourceware repositoryStan Shebs1-0/+35
1999-04-16Initial creation of sourceware repositoryStan Shebs1-35/+0
1995-08-02Update FSF address.Fred Fish1-1/+1
1994-01-12 * go32-xdep.c: Remove unused function uerror.Jim Kingdon1-8/+5
(sigsetmask): Declare return type. Declare argument (to match the way it is called). Explicitly return 0.
1993-11-20 * go32-xdep.c (re_comp, re_exec): Remove stubs now that gdbFred Fish1-3/+0
always uses it's own version of regex.
1993-11-01Change the stream argument to _filtered to GDB_FILE *.Thomas Lord1-1/+1
Change all references to stdout/stderr to gdb_stdout/gdb_stderr. Replace all calls to stdio output functions with calls to corresponding _unfiltered functions (`fprintf_unfiltered') Replaced calls to fopen for output to gdb_fopen. Added sufficient goo to utils.c and defs.h to make the above work. The net effect is that stdio output functions are only directly used in utils.c. Elsewhere, the _unfiltered and _filtered functions and GDB_FILE type are used. In the near future, GDB_FILE will stop being equivalant to FILE. The semantics of some commands has changed in a very subtle way: called in the right context, they may cause new occurences of prompt_for_continue() behavior. The testsuite doesn't notice anything like this, though. Please respect this change by not reintroducing stdio output dependencies in the main body of gdb code. All output from commands should go to a GDB_FILE. Target-specific code can still use stdio directly to communicate with targets.
1993-04-08 * ser-go32.c: Make it use serial port name.Stu Grossman1-1/+5
* go32-xdep.c: Put in def for strlwr, needed by dir.o in go32 libc.
1993-04-06 * configure.in: Sparclite uses sparc config dir. Also has it'sStu Grossman1-0/+8
own tm- & .mt files now. Also add sparclite to configdirs. * go32-xdep.c: Dummy routines for sigsetmask & strlwr. * config/i386/go32.mh: Nullify def of TERMCAP. * config/i386/xm-go32.h: Get rid of redef of EIO. * config/sparc/{sparclite.mh tm-sparclite.h}: New sparclite specific configs. Very similar to sun4os4, but without solib. * sparclite/{Makefile.in configure.in}: First cut at making this dir configgable.
1992-11-05* README: Add remote-es1800.c and remote-st2000.c to table.John Gilmore1-5/+0
* go32-nat.c: Remove, there is no native go32 support. * go32-xdep.c: Remove unused fork, fvork, wait, execlp, kill_inferior. * infcmd.c (run_command): Avoid long calls to printf_filtered. Bug fix courtesy of Alexander Klaiber.
1992-10-16go32 host/target/native separationK. Richard Pixley1-7/+0
1992-09-22Remove kill_inferior_fast, in favor of target_kill, which goesJohn Gilmore1-3/+1
through the target vector. * inferior.h (kill_inferior_fast): remove declaration. * main.c (disconnect): call quit_cover using catch_errors rather than calling kill_inferior_fast directly. New way goes through the target vector, handles attached processes, and writes command history if appropriate. (quit_cover): new function, wrapper for quit_command. * convex-xdep.c, go32-xdep.c, hppabsd-xdep.c, hppahpux-xdep.c, infptrace.c, procfs.c: Removed all instances of kill_inferior_fast, inlining them into the local kill_inferior when needed.
1992-05-13 Changes to support GDB running on DOS using GO32 and H8 supportSteve Chamberlain1-0/+43
* defs.h: if xm.h doesn't define FOPEN_RB, include "fopen-same.h", allowing hosts with different text and binary file formats to work. * coffread.c (read_coff_symtab): changed calling convention and operation - now it opens its own file with FOPEN_RB rather than duping and fdopening the provided handle. * dbxread.c, cplus-dem.c: #include mangling. * exec.c: If O_BINARY isn't defined, set it to 0, call openp for binary files oring in the right bit. * utils.c, terminal.h, inflow.c: hackery because dos doesn't have terminals. * remote-hms.c: cleanup to use the new remote serial stuff * serial.h, ser-termios.c, ser-go32.c: newfiles to provide host independent remote terminal I/O. * remote.c: if DONT_USE_REMOTE is defined, then don't use it. * source.c (openp): fix off by one problem removing / - can now open a source file in the root directory with DOS. * values.c (value_as_pointer): remove bogus address bits from long. (unpack_long): unpack into unsigned long/short if pointer.