diff options
author | Joel Brobecker <brobecker@gnat.com> | 2009-03-24 01:37:48 +0000 |
---|---|---|
committer | Joel Brobecker <brobecker@gnat.com> | 2009-03-24 01:37:48 +0000 |
commit | dcb626be9b9ad95a4a7f545779664bd09ae4889d (patch) | |
tree | bbd44a9f396b85adf14da08e64af82371bb6e3b7 /gdb/Makefile.in | |
parent | 24be086dc45e40b381af7b5c565002f47161305a (diff) | |
download | gdb-dcb626be9b9ad95a4a7f545779664bd09ae4889d.zip gdb-dcb626be9b9ad95a4a7f545779664bd09ae4889d.tar.gz gdb-dcb626be9b9ad95a4a7f545779664bd09ae4889d.tar.bz2 |
* gdb_usleep.h, gdb_usleep.c: New files.
* Makefile.in (SFILES): Add gdb_usleep.c.
(HFILES_NO_SRCDIR): Add gdb_usleep.h.
(COMMON_OBS): Add gdb_usleep.o.
* ser-unix.c (hardwire_send_break): Replace call to gdb_select
by call to gdb_usleep.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 8e19265..95b95a1 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -666,7 +666,7 @@ SFILES = ada-exp.y ada-lang.c ada-typeprint.c ada-valprint.c ada-tasks.c \ valarith.c valops.c valprint.c value.c varobj.c vec.c \ wrapper.c \ xml-tdesc.c xml-support.c \ - inferior.c + inferior.c gdb_usleep.c LINTFILES = $(SFILES) $(YYFILES) $(CONFIG_SRCS) init.c @@ -736,7 +736,8 @@ config/sparc/nm-sol2.h config/nm-linux.h config/mips/nm-irix5.h \ config/rs6000/nm-rs6000.h top.h bsd-kvm.h gdb-stabs.h reggroups.h \ annotate.h sim-regno.h dictionary.h dfp.h main.h frame-unwind.h \ remote-fileio.h i386-linux-tdep.h vax-tdep.h objc-lang.h \ -sentinel-frame.h bcache.h symfile.h windows-tdep.h linux-tdep.h +sentinel-frame.h bcache.h symfile.h windows-tdep.h linux-tdep.h \ +gdb_usleep.h # Header files that already have srcdir in them, or which are in objdir. @@ -817,7 +818,7 @@ COMMON_OBS = $(DEPFILES) $(CONFIG_OBS) $(YYOBJ) \ solib.o solib-null.o \ prologue-value.o memory-map.o xml-support.o \ target-descriptions.o target-memory.o xml-tdesc.o xml-builtin.o \ - inferior.o osdata.o + inferior.o osdata.o gdb_usleep.o TSOBS = inflow.o |