Mark ChangeLog
[official-gcc.git] / boehm-gc / ChangeLog
blob198b14ff52cc777da235f089903ea0e7b4d1fdad
1 2001-08-19  Release Manager
3         * GCC 3.0.1 Released.
5 2001-07-03  Tom Tromey  <tromey@redhat.com>
7         Fix for PR bootstrap/3281:
8         * aclocal.m4, configure, Makefile.in: Rebuilt.
9         * acinclude.m4: Set mkinstalldirs for in-tree build.
11 20010617 Release Manager
13         * GCC 3.0 Released.
15 2001-06-12  Tom Tromey  <tromey@redhat.com>
17         * aclocal.m4, configure: Rebuilt.
18         * acinclude.m4: Find configure.host in srcdir.
20 2001-06-07  Tom Tromey  <tromey@redhat.com>
22         For PR bootstrap/3075:
23         * configure, aclocal.m4, Makefile.in: Rebuilt.
24         * configure.in: Don't call AC_CONFIG_AUX_DIR or
25         AC_CANONICAL_SYSTEM.
26         * acinclude.m4 (BOEHM_CONFIGURE): Call AC_CONFIG_AUX_DIR and
27         AC_CANONICAL_SYSTEM here.
28         * Makefile.am (CONFIG_STATUS_DEPENDENCIES): Use srcdir, not
29         boehm_gc_basedir.
31 2001-05-01  Jeffrey Oldham  <oldham@codesourcery.com>
33         * gc_priv.h (UNLOCK): Change type of GC_noop1 argument.
34         (GC_noop1): Change declaration to take one argument.
36 2001-04-26  Alexandre Oliva  <aoliva@redhat.com>
38         * configure.in: Obtain THREADS with `gcc -v'.
39         * configure: Rebuilt.
41 2001-04-05  Hans Boehm  <hans_boehm@hp.com>
43         * misc.c: Back out buggy changes to stack clearing code.
44         Reduce CLEAR_SIZE to 1/4 of original value to reduce time
45         spent clearing memory.
47 2001-04-04  Hans Boehm  <hans_boehm@hp.com>
49         * finalize.c:
50         - Accomodate finalization requests for static objects.
51           (Will be required by hash synchronization.  May be needed
52           in some configurations now.)
54         * gc_priv.h:
55         - Define MIN_WORDS.  All allocation requests are rounded
56           up to at least this size.  Removes a subtle assumption that
57           Java objects have a 2 word header.
59         * gcconfig.h:
60         - Adjust Linux/IA64 configuration for non-ancient kernels.
61           (Necessary fix for IA64.)
63         * linux_threads.c:
64         - Fix syntax error in currently unused code.  Will be needed
65           for Linux/PA-RISC.
67         * malloc.c:
68         - Handle MIN_WORDS.
70         * misc.c:
71         - Handle MIN_WORDS.
72         - Change stack cleaning code to typically clear about one tenth
73           the memory it used to in the threads configuration.  Occasionally
74           still clear more.  (This is really a fix for a long-standing
75           and fairly significant performance bug with threads.)
77         * os_dep.c:
78         - Fix the code for finding the beginning of the data segment under
79           Linux.  I believe this is necessary for some IA64 Linux
80           distributions.  It will also helo other platforms, though those
81           may additionally require a gcconfig.h adjustment.  (This basically
82           works around the absence of a data_start or __data_start
83           definition in glibc.)
85         * test.c:
86         - Handle rounding due to MIN_WORDS.
88 2001-03-22  Tom Tromey  <tromey@redhat.com>
90         * Makefile.am (gctest_LDFLAGS): Use -shared-libgcc.
92 2001-03-19  Tom Tromey  <tromey@redhat.com>
94         * Makefile.in: Rebuilt.
95         * Makefile.am (gctest_LDFLAGS): new macro.
97 2001-03-16  Tom Tromey  <tromey@redhat.com>
99         * Makefile.in: Rebuilt.
100         * Makefile.am (TESTS_ENVIRONMENT): New macro.
102 2001-01-23  Rod Stewart <stewart@lab43.org>
104         * gcconfig.h: Check for `__arm__', not `arm'.
106 2000-12-30  Bryce McKinlay  <bryce@albatross.co.nz>
108         * configure.in: Rename THREADLIB to THREADLIBS.
109         * Makefile.am (LINK): Add $(THREADLIBS) to libtool command line. This
110         ensures that we link the correct version of the linuxthreads semaphore
111         functions.
112         * Makefile.in: Rebuilt.
113         * configure: Rebuilt.
114         
115         * linux_thread.c (GC_thr_init, GC_suspend_handler): Add SIGABRT to the 
116         list of signals which are not blocked during suspend in the NO_SIGNALS
117         case.
119 2000-12-23  Hans Boehm  <Hans_Boehm@hp.com>
121         * gcj_mlc.c (GC_gcj_malloc): Don't release allocation lock twice.
123 2000-12-15  Bryce McKinlay  <bryce@albatross.co.nz>
125         * Makefile.dist: Renamed from Makefile.orig.
127 2000-12-11  Alexandre Petit-Bianco  <apbianco@cygnus.com>
129         * Makefile.am (gctest_LDADD): Added EXTRA_TEST_LIBS.
130         * configure.in (EXTRA_TEST_LIBS): Check for `dlopen' in -ldl and
131         set accordingly.
132         * Makefile.in: Rebuilt.
133         * configure: Likewise.
135 2000-12-10  Geoffrey Keating  <geoffk@redhat.com>
137         * gcconfig.h: Add new case for powerpc EABI.
138         [PPC]: Handle embedded OS for powerpc simulator.
140 2000-09-30  Bryce McKinlay  <bryce@albatross.co.nz>
142         * configure.in: Define GC_GCJ_SUPPORT. Define NO_DEBUGGING in 
143         cross-compile configuration only.
144         * Makefile.am: Build gcj_mlc.c.
145         * configure, Makefile.in: Rebuilt.
147 2000-09-10  Alexandre Oliva  <aoliva@redhat.com>
149         * acinclude.m4: Include libtool macros from the top level.
150         * aclocal.m4, configure: Rebuilt.
152 2000-09-04  Anthony Green  <green@redhat.com>
154         Fix for PR libgcj/230:
155         * mark.c (GC_mark_from_mark_stack): Remove call to
156         GC_debug_object_start.
157         * gc_priv.h (GC_debug_object_start): Remove prototype.
159 2000-08-16  Alexandre Oliva  <aoliva@redhat.com>
161         * gcconfig.h [OSF1] (_end): Declare as `int'.
163 2000-08-02  Tom Tromey  <tromey@cygnus.com>
165         * gc_priv.h (GC_generic_malloc_inner): Prototype.
166         (GC_generic_malloc): Likewise.
167         (GC_add_to_black_list_normal): Likewise.
168         (GC_find_header): Likewise.
169         (GC_ADD_TO_BLACK_LIST_NORMAL): Cast bits argument to word.
170         * gc_mark.h (GC_find_start): Prototype.
171         (GC_signal_mark_stack_overflow): Likewise.
173 2000-07-24  Alexandre Oliva  <aoliva@redhat.com>
175         * configure.in (THREADS): Don't --enable-threads on IRIX <= 5.*.
176         * configure: Rebuilt.
178         * dyn_load.c (GC_scratch_last_end_ptr): Don't declare a #define.
180 2000-06-20  Bryce McKinlay  <bryce@albatross.co.nz>
182         Imported version 5.1.
183         * acinclude.m4: Push version to 5.1.
185 2000-06-19  Andrew Haley  <aph@cygnus.com>
187         * os_dep.c (read): Pass two dummy args to syscall().
189 2000-05-11  Bryce McKinlay  <bryce@albatross.co.nz>
191         Imported 5.0 release version.
192         * acinclude.m4: Increment version to 5.0.
194 2000-05-07  Bryce McKinlay  <bryce@albatross.co.nz>
196         Imported version 5.0alpha7.
197         * acinclude.m4: Update version to 5.0a7.
199 2000-04-26  Jakub Jelinek  <jakub@redhat.com>
201         * gcconfig.h (SPARC): Define ALIGNMENT to 8 for 64bit SPARC.
202         (SPARC/LINUX): Use GC_SysVGetDataStart instead of LINUX_DATA_START
203         - sparc glibc does not provide it.
204         (SAVE_CALL_CHAIN, ASM_CLEAR_CODE): Define on sparc*-linux*.
205         Make STACKBOTTOM depend on the wordsize.
206         * os_dep.c (GC_SysVGetDataStart): Compile in on sparc*-linux*.
207         (struct frame): Declare on sparc*-linux*.
208         (GC_save_callers): Bias the frame pointers if needed (sparc64).
209         * mach_dep.c (GC_save_regs_in_stack): Optimize on sparc32.
210         Implement on sparc64.
211         (GC_clear_stack_inner): Implement on sparc64.
212         * gc_priv.h (GC_test_and_set): Implement for sparc.
213         * linux_threads.c (GC_suspend_handler, GC_push_all_stacks): Use
214         GC_save_regs_in_stack on sparc.
216 2000-04-23  Tom Tromey  <tromey@cygnus.com>
218         * gcconfig.h (DYNAMIC_LOADING): Define for PPC Linux.
220 2000-04-19  Bryce McKinlay  <bryce@albatross.co.nz>
222         Imported version version 5.0alpha6.
223         * acinclude.m4: Bump version to 5.0a6.
224         * configure.in: Don't use alpha_mach_dep.s.
225         * include/private/config.h, irix_threads.c gc_watcom.asm: Delete 
226         obsolete files.
227         * Makefile.am, Makefile.in: irix_threads.c is now
228         hpux_irix_threads.c.
229         * Makefile.orig: Updated from gc distribution Makefile.
231 2000-03-26  Anthony Green  <green@redhat.com>
233         * misc.c (GC_enable): Always define GC_enable and GC_disable.
235 2000-02-14  Tom Tromey  <tromey@cygnus.com>
237         * gc.h (dlopen): Define as GC_dlopen on Linux.
238         (GC_dlopen): Declare on Linux.
239         * dyn_load.c (GC_dlopen): Define for Linux.
241 Fri Jan 28 17:13:20 2000  Anthony Green  <green@cygnus.com>
243         * gcconfig.h (DATASTART): Add missing extern declaration
244         for data_start on powerpc.
246 1999-12-22  Bryce McKinlay  <bryce@albatross.co.nz>
248         * linux_threads.c: Don't block SIGINT, SIGQUIT, SIGTERM in the
249         NO_SIGNALS case.
251 1999-12-19  Jeff Sturm  <jsturm@sigma6.com>
253         * gcconfig.h: Define DATASTART for Alpha Linux.
255 1999-12-19  Anthony Green  <green@cygnus.com>
257         * gcconfig.h: Use libgcj hack for Alpha Linux.  
258         Undefine MPROTEXT_VDB (from Jeff Sturm).
259         * os_dep.c: Remove Alpha Linux hacks.
260         * misc.c: Ditto.
262 1999-12-13  Tom Tromey  <tromey@cygnus.com>
264         * aclocal.m4, configure: Rebuilt.
265         * acinclude.m4: Changed version to 5.0a4.
266         * Makefile.in: Rebuilt.
267         * Makefile.am (libgcjgc_la_LDFLAGS): Changed version to 1:1:0.
269 1999-12-12  Anthony Green  <green@cygnus.com>
271         * gcconfig.h (DATASTART): Define as (&data_start) for PowerPC
272         Linux.
273         (DYNAMIC_LOADING): Define for PowerPC Linux.
274         * os_dep.c: Remove some special cases for PowerPC Linux.
275         * misc.c (GC_init_inner): Don't call GC_init_linux_data_start
276         for PowerPC Linux.
278 1999-11-04  Tom Tromey  <tromey@cygnus.com>
280         * Makefile.in: Rebuilt.
281         * Makefile.am (libgcjgc_la_SOURCES): Removed quick_threads.c.
283         * misc.c (GC_init_inner): Don't call GC_init_linuxppc().
284         (GC_thr_init): Don't declare.
286         * configure: Rebuilt.
287         * configure.in: Removed qt threads case.
288         * dyn_load.c: Don't mention QUICK_THREADS.
289         * os_dep.c: Don't mention QUICK_THREADS.
290         * misc.c: Don't mention QUICK_THREADS.
291         * gcconfig.h: Don't mention QUICK_THREADS.
292         * gc_priv.h: Removed QUICK_THREADS code.
293         * quick_threads.c: Removed.
295 1999-11-03  Tom Tromey  <tromey@cygnus.com>
297         * gcconfig.h: Merged in local changes from old config.h.
299 1999-11-02  Bryce McKinlay  <bryce@albatross.co.nz>
301         * gcconfig.h: Don't define MPROTECT_VDB on Linux/i386.
303 1999-11-02  Tom Tromey  <tromey@cygnus.com>
305         * quick_threads.c: Include gcconfig.h, not boehm-config.h.
307         * configure: Rebuilt.
308         * configure.in: Don't create boehm-config.h.
309         * Makefile.in: Rebuilt.
310         * Makefile.am (libgcjgc_la_SOURCES): Reference gcconfig.h, not
311         config.h.
312         ($(all_objs)): Depend on gcconfig.h.
313         * gc_priv.h: Reference GCCONFIG_H, not CONFIG_H.
314         * gcconfig.h: Define GCCONFIG_H, not CONFIG_H.
315         * config.h: Removed.
317 1999-11-01  Tom Tromey  <tromey@cygnus.com>
319         * Makefile.in: Rebuilt.
320         * Makefile.am (gctest_LDADD): Added THREADLIB.
321         (TESTS): New macro.
322         * configure: Rebuilt.
323         * configure.in (INCLUDES): New subst.
325 1999-09-29  Steve Chamberlain  <sac@pobox.com>
327         * config.h: Added picoJava target.
328         * mach_dep.h (GC_push_regs):  New code for picoJava.
330 1999-09-28  Tom Tromey  <tromey@cygnus.com>
332         * aclocal.m4, configure: Rebuilt.
333         * acinclude.m4 (LIB_AC_PROG_CC, LIB_AC_PROG_CXX): Provide
334         appropriate AC_PROG_ symbol.
336 Tue Aug 10 00:08:29 1999  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
338         * gc_priv.h:  IRIX thread changes from
339         include/private/gc_priv.h.
341 Mon Aug  9 18:33:38 1999  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
343         * Makefile.in: Rebuilt.
344         * Makefile.am (toolexeclibdir): Add $(MULTISUBDIR) even for native
345         builds.
347         * configure: Rebuilt.
348         * configure.in: Properly align --help output, fix capitalization
349         and punctuation.
350         * acinclude.m4: Likewise.
352 1999-08-04  Tom Tromey  <tromey@cygnus.com>
354         * configure.in: Added missing `;;'.  From Anthony Green.
356 Mon Aug  2 23:09:41 1999  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
358         * configure.in (machdep): Use mips_ultrix_mach_dep.s on Ultrix V4.
360 1999-08-03  Tom Tromey  <tromey@cygnus.com>
362         * gc_priv.h (GC_test_and_set): Implementation for Linux PPC from
363         Franz Sirl <Franz.Sirl-kernel@lauterbach.com>.
365 1999-08-02  Tom Tromey  <tromey@cygnus.com>
367         * aclocal.m4, configure: Rebuilt for new libtool.
369 1999-07-31  Alexandre Oliva  <oliva@dcc.unicamp.br>
371         * mips_sgi_mach_dep.s: Enable PIC option.
373 1999-07-19  Tom Tromey  <tromey@cygnus.com>
375         * config.h (MPROTECT_VDB): Don't define on Linux.
377 1999-07-19  Alexandre Oliva  <oliva@dcc.unicamp.br>
379         * Makefile.am (.s.lo): Avoid `#line' directives.
380         * Makefile.in: Rebuilt.
382 1999-07-19  Alexandre Oliva  <oliva@dcc.unicamp.br>
384         * Makefile.am (*-recursive, *-am, *-multi): Automake does not
385         generate *-recursive for this Makefile, use *-am instead.
386         * Makefile.in: Rebuilt.
388 1999-06-30  Alexandre Oliva  <oliva@dcc.unicamp.br>
390         * Makefile.am (.s.lo): Renamed from `.s.o'.
391         * Makefile.in: Rebuilt.
393 1999-06-21  Tom Tromey  <tromey@cygnus.com>
395         Alpha patch from Jeff Sturm:
396         * os_dep.c (GC_init_linuxalpha): New function.
397         * misc.c: Initialize for alpha linux.
398         * gc_priv.h (GC_test_and_set): Define for alpha.
399         * config.h: Don't assume __data_start on alpha.
401         * Makefile.in: Rebuilt.
402         * Makefile.am (libgcjgc_la_LDFLAGS): Use -version-info, not
403         -release.
405         * Makefile.in: Rebuilt.
406         * Makefile.am (toolexeclibdir): Define as libdir when
407         appropriate.
408         * configure: Rebuilt.
409         * configure.in (USE_LIBDIR): New conditional.
411         * configure: Rebuilt.
412         * configure.in: Recognize all forms of alpha.
414 1999-06-17  Anthony Green  <green@cygnus.com>
416         * mach_dep.c (GC_push_regs): FreeBSD-elf support (from
417         Carlo Dapor <carlo@vis.ethz.ch>).
419 1999-05-05  Gilles Zunino  <Gilles.Zunino@hei.fr>
421         * configure.in: Switch from irix threads to posix threads
422         Defined IRIX_THREADS. Put mips_sgi_mach_dep.lo into machdep
423         for mips architecture.
424         * configure: Regenerate.
426 1999-04-30  Tom Tromey  <tromey@cygnus.com>
428         * linux_threads.c: Don't reference __pthread_initial_thread_bos.
430 1999-04-26  Tom Tromey  <tromey@cygnus.com>
432         * dyn_load.c (GC_FirstDLOpenedLinkMap): Declare _DYNAMIC as
433         `weak'.
435 1999-04-23  Tom Tromey  <tromey@cygnus.com>
437         * Makefile.in, configure: Rebuilt.
438         * Makefile.am (EXTRA_LIBRARIES): Mention libgcjgc.la.
439         (libgcjgc_la_SOURCES): Renamed.
440         (libgcjgc_la_LIBADD): Likewise.
441         (libgcjgc_la_DEPENDENCIES): Likewise.
442         (EXTRA_libgcjgc_la_SOURCES): Likewise.
443         (gctest_LDADD): Use libgcjgc.la.
444         (all_objs): Mention libgcj_la_OBJECTS.
445         (EXTRA_LTLIBRARIES): Renamed.
446         (toollib_LTLIBRARIES): Likewise.
447         (libgcjgc_la_LDFLAGS): New macro
448         (toolexecdir): Renamed.
449         (toolexeclibdir): Likewise.
450         (toolexeclib_LTLIBRARIES): Likewise.
451         (LTCOMPILE): Renamed; added libtool invocation.
452         (LINK): Added libtool invocation.
453         (.s.o): use LTCOMPILE.
454         * configure.in: Call AM_PROG_LIBTOOL.  
455         (target_all): Set to libgcjgc.la.
456         Mention `.lo' forms of object files.
458 1999-04-21  Tom Tromey  <tromey@cygnus.com>
460         * misc.c (GC_init_inner): If QUICK_THREADS defined, compute
461         GC_stackbottom.
463         * os_dep.c: glibc 2.1 requires asm/sigcontext.h, not
464         sigcontext.h.  From Matthias Klose <doko@itso.de>.
466 1999-04-16  Tom Tromey  <tromey@cygnus.com>
468         * config.h (__start): Declare as `int' in alpha/OSF1 case.  From
469         David Pettersson <dapet@mai.liu.se>
471 1999-04-14  Tom Tromey  <tromey@cygnus.com>
473         * configure: Rebuilt.
474         * configure.in: Don't use sparc_mach_dep.o for Solaris.  Reverts
475         incorrect patch of 199-04-09.
477         * configure: Rebuilt.
478         * configure.in: Added support for alpha.
479         From David Pettersson <dapet@mai.liu.se>.
481 1999-04-13  Tom Tromey  <tromey@cygnus.com>
483         * Makefile.in: Rebuilt.
484         * Makefile.am (libgcjgc_a_SOURCES): Added solaris-threads.c and
485         solaris-threads.h.
487 1999-04-09  Tom Tromey  <tromey@cygnus.com>
489         * configure: Rebuilt.
490         * configure.in: Use sparc_mach_dep.s when building on Solaris.
492 1999-02-23  Tom Tromey  <tromey@cygnus.com>
494         * configure: Rebuilt.
495         * configure.in: For Linux, define _REENTRANT.  For Solaris, define
496         SOLARIS_THREADS and _SOLARIS_PTHREADS.
498 1999-02-18  Tom Tromey  <tromey@cygnus.com>
500         * quick_threads.c (GC_push_all_stacks): Change order of arguments
501         to GC_push_all_stacks depending on STACK_GROWS_DOWN define.  Check
502         for case where LO is NULL.
504 1999-02-10  Tom Tromey  <tromey@cygnus.com>
506         * aclocal.m4, configure, Makefile.in: Rebuilt.
507         * acinclude.m4: Updated to be used with automake 1.4.
508         * configure.in: Renamed libgc to libgcjgc.  Updated to be used
509         with automake 1.4.
510         * Makefile.am (EXTRA_LIBRARIES): Renamed libgc to libgcjgc.
511         (libgcjgc_a_SOURCES): Likewise.
512         (libgcjgc_a_LIBADD): Likewise.
513         (libgcjgc_a_DEPENDENCIES): Likewise.
514         (EXTRA_libgcjgc_a_SOURCES): Likewise.
515         (gctest_LDADD): Likewise.
516         (all_objs): Likewise.
518 1999-01-08  Tom Tromey  <tromey@cygnus.com>
520         * configure: Rebuilt.
521         * configure.in: Define LINUX_THREADS if using POSIX threads on
522         Linux.
524         * gc_priv.h (GC_test_and_set): Put return type into definition.
526 1998-11-24  Andrew Haley  <aph@viagra.cygnus.co.uk>
528         * Makefile.am: add support for eCos.  In particular, add C++
529         support for compiling the file ecos.cc.
530         * ecos.cc: new file.
531         * acinclude.m4: add C++ support.
532         * aclocal.m4: likewise
533         * config.h: add eCos support.
534         * configure: likewise
535         * configure.in: likewise
536         * misc.c (GC_write): add eCos support.
537         * os_dep.c (tiny_sbrk): add eCos support.
538         
539 Thu Dec 10 18:24:34 1998  Warren Levy  <warrenl@cygnus.com>
541         * misc.c (GC_init_inner): Moved STACKBASE code to os_dep.c.
542         * os_dep.c (GC_get_stack_base): Moved STACKBASE code from misc.c.
544 1998-11-23  Tom Tromey  <tromey@cygnus.com>
546         * configure.host (boehm_gc_cflags): Don't add `-O2'.
548 1998-11-20  Andrew Haley  <aph@viagra.cygnus.co.uk>
550         * Makefile.am, Makefile.in, configure.host: tx39 build option 
551         "-G 0" added.
552         
553 1998-11-17  Tom Tromey  <tromey@cygnus.com>
555         * configure: Rebuilt.
556         * configure.in: Switch on host, not target.
558 1998-11-16  Tom Tromey  <tromey@cygnus.com>
560         * gc_priv.h (GC_debug_object_start): Declare.
561         * mark.c (GC_mark_from_mark_stack): Call GC_debug_object_start.
562         * gc.h (GC_debug_register_finalizer_no_order,
563         GC_register_finalizer_no_order): Declare.
564         (GC_REGISTER_FINALIZER_NO_ORDER): New macro.
565         * dbg_mlc.c (GC_debug_register_finalizer_no_order): New function.
566         (GC_debug_generic_malloc): Likewise.
567         (GC_debug_object_start): new function.
569 1998-11-11  Tom Tromey  <tromey@cygnus.com>
571         * configure: Rebuilt.
572         * configure.in: Recognize --enable-java-gc, not --enable-gc.
574 Tue Nov  3 18:01:12 1998  Tom Tromey  <tromey@sanguine.cygnus.com>
576         * dyn_load.c: Handle QUICK_THREADS case.
578 1998-10-21  Tom Tromey  <tromey@cygnus.com>
580         * configure: Rebuilt.
581         * configure.in: Put cpp defines here, not in config.h.  Recognize
582         --enable-threads.  Set INCLUDES.  Create boehm-cflags file.  Don't
583         define PACKAGE or VERSION.
584         * config.h (SILENT, NO_SIGNALS, NO_DEBUGGING, JAVA_FINALIZATION):
585         Don't define.
587         * os_dep.c (GC_default_push_other_roots): Define when
588         QUICK_THREADS defined.
589         * misc.c: Added QUICK_THREADS case.
590         * gc_priv.h: Added QUICK_THREADS case to define LOCK and UNLOCK.
591         * config.h (THREADS): Define if QUICK_THREADS defined.
592         * Makefile.in: Rebuilt.
593         * Makefile.am (libgc_a_SOURCES): Added linux_threads.c,
594         quick_threads.c.
595         * quick_threads.c: New file.
597 1998-10-20  Tom Tromey  <tromey@cygnus.com>
599         * aclocal.m4, configure: Rebuilt.
600         * acinclude.m4: Don't subst machine_dir or sys_dir.
601         * configure.host: Removed unused code.
603 Sun Oct 11 08:18:02 1998  Anthony Green  <green@cygnus.com>
605         * configure: Rebuilt.
606         * configure.in: Fix typo in previous patch.
608 Sun Oct 11 08:06:11 1998  Anthony Green  <green@cygnus.com>
610         * Makefile.in, aclocal.m4, configure: Rebuilt.
611         * Makefile.am, acinclude.m4, configure.in: Add multilib support.
612         * configure.host: Created.
614 Tue Sep  1 10:58:15 1998  Tom Tromey  <tromey@cygnus.com>
616         * Makefile.in: Rebuilt.
617         * Makefile.am (lib_LIBRARIES): Use target_all.
618         (EXTRA_LIBRARIES): New macro.
619         * configure: Rebuilt.
620         * configure.in: Recognize --enable-gc.
622 Thu Aug 13 10:52:45 1998  Tom Tromey  <tromey@cygnus.com>
624         * Makefile.in: Rebuilt.
625         * Makefile.am (COMPILE): Define.
626         (LINK): Likewise.
627         (.s.o): Use MY_CFLAGS.
628         * configure: Rebuilt.
629         * configure.in (MY_CFLAGS): Define and subst.
631 Wed Aug 12 11:41:43 1998  Tom Tromey  <tromey@cygnus.com>
633         * configure: Rebuilt.
634         * configure.in: Added --with-cross-host argument.  Use
635         $with_cross_host to determine when cross-compiling.
637         * config.h (SMALL_CONFIG): Don't define.
638         * configure: Rebuilt.
639         * configure.in: Define SMALL_CONFIG when cross-compiling.
641 Tue Aug 11 11:41:25 1998  Tom Tromey  <tromey@cygnus.com>
643         * solaris_pthreads.c, misc.c, gc_priv.h, config.h, alloc.c,
644         allchblk.c: Merged with 4.13a2 while preserving local changes.
646         * Makefile.orig: Updated from Makefile in 4.13a2.
648         * configure: Rebuilt.
649         * configure.in: Updated version number to 4.13a2.  On Solaris,
650         don't build with -O when using gcc.
652         Merged in version 4.13alpha2:
653         * config.h (USE_MMAP): Re-enable on Solaris.
654         * solaris_pthreads.c: Removed RCS Id line.
655         * alpha_mach_dep.s: Removed RCS Id line.
657 Wed Jul 22 15:38:12 1998  Tom Tromey  <tromey@cygnus.com>
659         * config.h (USE_MMAP): Don't define for Solaris.
661 Wed Jun 10 12:51:41 1998  Tom Tromey  <tromey@cygnus.com>
663         * Makefile.in: Rebuilt.
664         * Makefile.am (libgc_a_SOURCES): Removed setjmp_t.c.
666         * Makefile.in: Rebuilt.
667         * Makefile.am (libgc_a_SOURCES): Removed add_gc_prefix.c.
669 Thu May 14 15:32:58 1998  Tom Tromey  <tromey@cygnus.com>
671         * Makefile.in: Rebuilt.
672         * Makefile.am ($(all_objs)): Depend on config.h.
674         * config.h: [MIPS] If DATASTART_IS_ETEXT defined then define
675         DATASTART as &_etext.
676         * misc.c (GC_init_inner): If STACKBASE defined, then use it.
677         * configure: Rebuilt.
678         * configure.in: Define STACKBASE and DATASTART_IS_ETEXT for the
679         tx39.
681 Tue May 12 13:15:45 1998  Tom Tromey  <tromey@cygnus.com>
683         * alloc.c: Don't call GET_TIME if NO_CLOCK defined.
684         (GC_maybe_gc): Likewise.
685         * os_dep.c: If NO_SIGSET defined, then have empty
686         GC_disable_signals and GC_enable_signals.
687         * configure: Rebuilt.
688         * configure.in: Added --with-target-subdir option.  If
689         cross-compiling, define NO_SIGSET and NO_CLOCK.
691 Wed May  6 16:40:28 1998  Tom Tromey  <tromey@cygnus.com>
693         * Makefile.in: Rebuilt.
694         * Makefile.am (.s.o): Directly use CC -x assembler-with-cpp.
695         (AS): Removed.
696         * aclocal.m4, configure: Rebuilt.
697         * acinclude.m4: New file.
698         * configure.in: Don't run AM_EXEEXT.  Use LIB_AC_PROG_CC.
700 Thu Apr 30 14:51:12 1998  Tom Tromey  <tromey@cygnus.com>
702         * configure: Rebuilt.
703         * configure.in: Link boehm-config.h to config.h.
704         * Makefile.in: Rebuilt.
705         * Makefile.am (INCLUDES): Removed.
706         * config.h (SILENT, SMALL_CONFIG, NO_SIGNALS, NO_DEBUGGING,
707         JAVA_FINALIZATION): Define
709 Wed Apr 29 11:03:14 1998  Tom Tromey  <tromey@cygnus.com>
711         * Many files: Use GC_bool, not bool.
712         * gc_priv.h: Define GC_bool, not bool.
714         * misc.c (GC_dont_gc): Define as int.
715         (GC_quiet): Likewise.
716         * gc_priv.h (GC_never_stop_func): Declare as returning bool.
717         * alloc.c (GC_dont_expand): Define as int.
718         * gc_priv.h: For gcc, define bool as char.
720 Tue Apr 28 22:44:16 1998  Tom Tromey  <tromey@cygnus.com>
722         * Makefile.in: Rebuilt.
723         * Makefile.am (check_PROGRAMS): New macro.
724         (gctest_SOURCES): Likewise.
725         (gctest_LDADD): Likewise.
727 Mon Apr 27 23:53:24 1998  Tom Tromey  <tromey@cygnus.com>
729         * Makefile.in: Rebuilt.
730         * Makefile.am (libgc_a_SOURCES): Added dyn_load.c.
731         * configure: Rebuilt.
732         * configure.in: Define SUNOS53_SHARED_LIB on Solaris 2.3.
734 Wed Apr 15 11:40:56 1998  Tom Tromey  <tromey@sanguine.cygnus.com>
736         * Makefile.am, Makefile.in, configure.in, configure, aclocal.m4:
737         New files.
738         * Makefile.orig: Renamed from Makefile.