att ChangeLog.
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 Mon Jan 11 16:43:44 1999 Michael Snyder <msnyder@cleaver.cygnus.com>
2
3 * remote.c (remote_wait): Add inferior_pid to thread list only
4 if it is not already there.
5
6 1999-01-11 Jason Molenda (jsm@bugshack.cygnus.com)
7
8 * scm-tags.h: Update FSF's address on copyright notice.
9 * ser-e7kpc.c: Same.
10 * gnu-nat.h: Same.
11
12 Mon Jan 11 13:45:57 1999 Stu Grossman <grossman@babylon-5.cygnus.com>
13
14 * dwarf2read.c (dump_die): Change stderr gdb_stderr.
15 * expprint.c (print_subexp): fprintf => fprintf_unfiltered.
16 * jv-typeprint.c (java_type_print_base): fputs => fputs_filtered.
17 * stack.c (struct function_bounds): Remove superfluous `typedef'.
18 * symfile.c (list_overlays_command): stdout => gdb_stdout.
19 * symmisc.c (maintenance_check_symtabs): stdout => gdb_stdout.
20 * utils.c (print_spaces): Make more efficient.
21
22 Mon Jan 11 13:55:51 1999 David Taylor <taylor@texas.cygnus.com>
23
24 * utils (print_spaces): fix arg to strcat; fix formatting.
25
26 Fri Jan 8 11:57:24 1999 Stan Shebs <shebs@andros.cygnus.com>
27
28 * exec.c (exec_ops): Don't initialize statically.
29 (init_exec_ops): New function, fills in exec_ops.
30 (_initialize_exec): Use it.
31
32 Thu Jan 7 17:50:15 EST 1999 Zdenek Radouch (radouch@cygnus.com)
33
34 Beta FR30 port.
35 * fr30-tdep.c
36 * config/fr30/tm-fr30.h
37
38 Wed Jan 6 12:28:35 1999 David Taylor <taylor@texas.cygnus.com>
39
40 * configure.in: Add an --enable-tui argument. Construct
41 tui/Makefile from tui/Makefile.in. Use AM_PROG_CC_STDC. If we
42 have the GUI, then we need this to process libgui.h.
43 (ENABLE_CFLAGS): define and export BUILD_TUI.
44 (AC_CHECK_HEADERS): Add check for term.h.
45
46 * configure.host (hppa-*-hpux10.20, hppa-*-hpux11.0*): New configs.
47
48 * config.in, configure : regenerated.
49
50 * Makefile.in: Allow the TUI code to be conditionally enabled.
51 (TUI_LIBRARY): New variable, value are set by the configuration
52 script. Set to the empty string when the TUI isn't enabled.
53 (gdb$(GDBEXT)): Use those, instead of referring to all-tui and
54 tui/libtui.a directly.
55 (BUILD_TUI): build the tui -- only when configured with
56 --enable-tui.
57 (YLWRAP): use ylwrap to avoid problems on systems w/o bison.
58 (gdb$(EXEEXT)): make it dependent on BUILD_TUI.
59 (all-tui): remove dependency from phony target.
60 (c-exp.tab.c): use ylwrap instead of bison.
61 (jv-exp.tab.c): ditto.
62 (f-exp.tab.c): ditto.
63 (m2-exp.tab.c): ditto.
64 (ALLDEPFILES): add somread.c, hp-psymtab-read.c, hp-symtab-read.c.
65 (SFILES): remove the above files
66 (COMMON_OBS): remove somread.o
67 (SFILES): Add the tui files to this, so they get included in etags
68 tables.
69 (gdb$(EXEEXT)): Add all-tui to the list of dependencies, and add
70 tui/libtui.a to the link list.
71 (all-tui): New rule, which does a recursive make in the tui
72 subdir.
73 (tui/libtui.a): When recursing, pass down ${FLAGS_TO_PASS}. And
74 don't echo the make command. This is closer to what the other
75 recursions do.
76 (HFILES_NO_SRCDIR): add hpread.h
77 (COMMON_OBS): add hp-psymtab-read.o, hp-symtab-read.o
78 (SFILES): add hp-psymtab-read.c, hp-symtab-read.c add rules for
79 the new files. Remove hpread.c, hpread.o
80 (gdb$(EXEEXT)): Depend on the actual tui library, not on a
81 fictitious target. Since the fictitious target never existed,
82 make would always relink.
83 (tui/libtui.a): Always recurse to make sure the library is up to
84 date.
85
86 Wed Jan 6 12:05:12 1999 Stan Shebs <shebs@andros.cygnus.com>
87
88 * remote.c: Pacify --enable-build-warnings, reformat code
89 to conform to standards, fix spelling errors.
90 (ishex, stubhex, record_currthread, etc): Declare.
91 (ishex, stubhex): Declare char arg as int.
92 (pack_string): Comment out, never used but possibly useful.
93 (threadref_to_int, remote_get_threadinfo, etc): Make static.
94
95 Wed Jan 6 11:43:32 1999 David Taylor <taylor@texas.cygnus.com>
96
97 The following changes were made by Elena Zannoni
98 <ezannoni@cygnus.com> and Edith Epstein <eepstein@cygnus.com> as
99 part of a project to merge in changes made by HP.
100
101 * c-exp.y: use external flag hp_som_som_object_present to decide
102 whether code was compiled by HP's compilers. Add two new C++
103 tokens for true and false.
104 (yylex): check for template name is done differently for the
105 HP/aCC compiler case. Change some of the template processing code
106 for handling HP aCC templates. Handle true and false tokens.
107
108 Tue Jan 5 11:13:36 1999 Michael Snyder <msnyder@cleaver.cygnus.com>
109
110 * remote.c (record_curthread): Must not modify inferior_pid when
111 called from wait_for_inferior. Instead, if a new thread-id is
112 detected, call add_thread.
113 (MAGIC_NULL_PID): new macro, use instead of the magic number
114 "42000".
115 (remote_find_new_threads): if inferior_pid is unknown, get and use
116 the current thread id.
117 (remote_start_remote): on connecting, attempt to get the current
118 thread id for inferior_pid.
119 (remote_resume): If pid == -1, then resume any-thread (not the
120 current thread specifically). Also some cosmetic fixups.
121
122 * thread.c (info_threads_command): don't initialize current_pid
123 until after call to FIND_NEW_THREADS (which may change inferior_pid).
124 Also some cosmetic fixups.
125 * infrun.c: cosmetic fixups and casts to avoid warnings.
126 * infcmd.c: cosmetic fixups, mainly long lines.
127
128 Tue Jan 5 11:55:57 1999 David Taylor <taylor@texas.cygnus.com>
129
130 * target.c (noprocess): terminate sentence with a period.
131 * breakpoint.c (catch_command_1): ditto.
132
133 * c-valprint.c (c_value_print): remove hack^2 from HP; it causes
134 testsuite losses with no real gain.
135
136 * inferior.h (START_INFERIOR_TRAPS_EXPECTED): restore, but only
137 if tm-*.h hasn't overridden default value.
138
139 1999-01-04 Jason Molenda (jsm@bugshack.cygnus.com)
140
141 * configure.in: Fix whitespace indentation for --help.
142 * configure: Regenerated.
143
144 1999-01-04 Manuel Bouyer <bouyer@antioche.lip6.fr>
145
146 * main.c: Add --write command line option, document -w.
147 * gdb.1: Document --write.
148
149 1999-01-04 Jason Molenda (jsm@bugshack.cygnus.com)
150
151 * configure.in: Require autoconf 2.12.1 or higher.
152 * doc/configure.in: Ditto.
153 * nlm/configure.in: Ditto.
154 * rdi-share/configure.in: Ditto.
155 * testsuite/configure.in: Ditto.
156 * doc/Makefile.in: Don't hardcode $(SHELL).
157 * nlm/Makefile.in: Ditto.
158 * rdi-share/Makefile.in: Ditto.
159 * testsuite/Makefile.in: Ditto.
160
161 Mon Jan 4 12:53:03 1999 Stan Shebs <shebs@andros.cygnus.com>
162
163 * remote-vx.c (init_vx_ops, init_vx_run_ops): Remove unneeded
164 inits of new fields, including ref to bogus field.
165 (vx_ops, vx_run_ops): Make static.
166
167 Mon Jan 4 15:05:29 1999 David Taylor <taylor@texas.cygnus.com>
168
169 * inferior.h (START_INFERIOR_TRAPS_EXPECTED): delete,
170 already defined in tm.h.
171
172 * inftarg.c: change <sys/unistd.h> to <unistd.h> and
173 conditionalize its inclusion.
174 * infttrace.c: ditto.
175
176 For older changes see ChangeLog-98
177 \f
178 Local Variables:
179 mode: change-log
180 left-margin: 8
181 fill-column: 74
182 version-control: never
183 End:
This page took 0.032414 seconds and 4 git commands to generate.