diff options
author | Andrew Cagney <cagney@redhat.com> | 1998-06-04 06:33:02 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 1998-06-04 06:33:02 +0000 |
commit | 05f6bf9cea4c1f294a40af5ad55abe2970cf6640 (patch) | |
tree | 813965cae26fa06dbb9d51d73002e6dcad4dd824 /sim/common/Make-common.in | |
parent | be5fbc838867f5889063fc2f072d086d991d5990 (diff) | |
download | gdb-05f6bf9cea4c1f294a40af5ad55abe2970cf6640.zip gdb-05f6bf9cea4c1f294a40af5ad55abe2970cf6640.tar.gz gdb-05f6bf9cea4c1f294a40af5ad55abe2970cf6640.tar.bz2 |
Memory corruption problems - hw-event list wasn't correct
unlinking/freeing events. Couldn't handle the removal of a hw-event
that just been scheduled.
Diffstat (limited to 'sim/common/Make-common.in')
-rw-r--r-- | sim/common/Make-common.in | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/sim/common/Make-common.in b/sim/common/Make-common.in index b92486c..4d950b8 100644 --- a/sim/common/Make-common.in +++ b/sim/common/Make-common.in @@ -143,11 +143,13 @@ SIM_EXTRA_CLEAN = SIM_COMMON_HW_OBJS = \ hw-alloc.o \ + hw-base.o \ hw-device.o \ hw-events.o \ + hw-handles.o \ + hw-instances.o \ hw-ports.o \ hw-properties.o \ - hw-base.o \ hw-tree.o \ sim-hw.o \ @@ -319,8 +321,8 @@ hw-alloc_h = $(srccom)/hw-alloc.h hw-base_h = $(srccom)/hw-base.h hw-device_h = $(srccom)/hw-device.h hw-events_h = $(srccom)/hw-events.h -hw-handles_h = #$(srccom)/hw-handles.h -hw-instances_h = #$(srccom)/hw-instances.h +hw-handles_h = $(srccom)/hw-handles.h +hw-instances_h = $(srccom)/hw-instances.h hw-ports_h = $(srccom)/hw-ports.h hw-properties_h = $(srccom)/hw-properties.h hw-tree_h = $(srccom)/hw-tree.h @@ -488,6 +490,10 @@ hw-device.o: $(srccom)/hw-device.c $(hw_main_headers) hw-events.o: $(srccom)/hw-events.c $(hw_main_headers) $(sim_main_headers) $(CC) -c $(srccom)/hw-events.c $(ALL_CFLAGS) +test-hw-events: $(srccom)/hw-events.c libsim.a + $(CC) $(ALL_CFLAGS) -DMAIN -o test-hw-events$(EXEEXT) \ + $(srccom)/hw-events.c libsim.a $(EXTRA_LIBS) + hw-instances.o: $(srccom)/hw-instances.c $(hw_main_headers) $(CC) -c $(srccom)/hw-instances.c $(ALL_CFLAGS) |