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