aboutsummaryrefslogtreecommitdiff
path: root/boehm-gc/dbg_mlc.c
diff options
context:
space:
mode:
authorBryce McKinlay <bryce@albatross.co.nz>2000-05-07 00:43:49 +0000
committerBryce McKinlay <bryce@gcc.gnu.org>2000-05-07 01:43:49 +0100
commit9444af72b4d9a9b5cb9289e13a624ff5731b2797 (patch)
tree0d22c55f1ff05d1e504f0d4e95fc271a3ca6203f /boehm-gc/dbg_mlc.c
parentf0acaf02b5e7e9d2727c19d89c7ff5d7ec329eb0 (diff)
downloadgcc-9444af72b4d9a9b5cb9289e13a624ff5731b2797.zip
gcc-9444af72b4d9a9b5cb9289e13a624ff5731b2797.tar.gz
gcc-9444af72b4d9a9b5cb9289e13a624ff5731b2797.tar.bz2
Imported version 5.0alpha7.
2000-05-07 Bryce McKinlay <bryce@albatross.co.nz> Imported version 5.0alpha7. * acinclude.m4: Update version to 5.0a7. From-SVN: r33750
Diffstat (limited to 'boehm-gc/dbg_mlc.c')
-rw-r--r--boehm-gc/dbg_mlc.c26
1 files changed, 25 insertions, 1 deletions
diff --git a/boehm-gc/dbg_mlc.c b/boehm-gc/dbg_mlc.c
index 776dc3f..f329cc8 100644
--- a/boehm-gc/dbg_mlc.c
+++ b/boehm-gc/dbg_mlc.c
@@ -428,7 +428,31 @@ GC_PTR p;
GC_end_stubborn_change(q);
}
-#endif /* STUBBORN_ALLOC */
+#else /* !STUBBORN_ALLOC */
+
+# ifdef __STDC__
+ GC_PTR GC_debug_malloc_stubborn(size_t lb, GC_EXTRA_PARAMS)
+# else
+ GC_PTR GC_debug_malloc_stubborn(lb, s, i)
+ size_t lb;
+ char * s;
+ int i;
+# endif
+{
+ return GC_debug_malloc(lb, OPT_RA s, i);
+}
+
+void GC_debug_change_stubborn(p)
+GC_PTR p;
+{
+}
+
+void GC_debug_end_stubborn_change(p)
+GC_PTR p;
+{
+}
+
+#endif /* !STUBBORN_ALLOC */
# ifdef __STDC__
GC_PTR GC_debug_malloc_atomic(size_t lb, GC_EXTRA_PARAMS)