summaryrefslogtreecommitdiff
path: root/boehm-gc
Commit message (Collapse)AuthorAgeFilesLines
* For boehm-gc:bryce2000-12-306-22/+89
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * configure.in: Rename THREADLIB to THREADLIBS. * Makefile.am (LINK): Add $(THREADLIBS) to libtool command line. This ensures that we link the correct version of the linuxthreads semaphore functions. * Makefile.in: Rebuilt. * configure: Rebuilt. * linux_thread.c (GC_thr_init, GC_suspend_handler): Add SIGABRT to the list of signals which are not blocked during suspend in the NO_SIGNALS case. For libjava: * Makefile.am (libgcj_la_LIBADD): Add $(THREADLIBS). This ensures that the correct versions of various linuxthreads functions get linked. * Makefile.in: Rebuilt. * java/lang/natThread.cc (finalize_native): New static function. Call _Jv_ThreadDestroyData. (initialize_native): Register finalizer for "data". * include/posix-threads.h (_Jv_ThreadInitData): New simpler prototype. (_Jv_ThreadDestroyData): New prototype. * include/win32-threads.h: Ditto. * include/no-threads.h: Ditto. * posix-threads.cc (_Jv_ThreadInitData): Implement new prototype. (_Jv_ThreadDestroyData): New function. Free native thread "data" and move mutex and condition variable destroy code from: (really_start): ...here. (_Jv_ThreadStart): Set PTHREAD_CREATE_DETACHED. * win32-threads.cc (_Jv_ThreadInitData): Implement new prototype. (_Jv_ThreadDestroyData): Implemented. * nogc.cc (_Jv_AllocObject): Use "void *" not "ptr_t". (_Jv_AllocArray): Ditto. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@38557 138bc75d-0d04-0410-961f-82ee72b054a4
* 2000-12-23 Hans Boehm <Hans_Boehm@hp.com>bryce2000-12-232-1/+4
| | | | | | | * gcj_mlc.c (GC_gcj_malloc): Don't release allocation lock twice. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@38476 138bc75d-0d04-0410-961f-82ee72b054a4
* * Makefile.dist: Renamed from Makefile.orig.bryce2000-12-152-0/+4
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@38276 138bc75d-0d04-0410-961f-82ee72b054a4
* 2000-12-11 Alexandre Petit-Bianco <apbianco@cygnus.com>apbianco2000-12-125-57/+66
| | | | | | | | | | | | | * Makefile.am (gctest_LDADD): Added EXTRA_TEST_LIBS. * configure.in (EXTRA_TEST_LIBS): Check for `dlopen' in -ldl and set accordingly. * Makefile.in: Rebuilt. * configure: Likewise. (http://sources.redhat.com/ml/java-patches/2000-q4/msg00237.html) git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@38208 138bc75d-0d04-0410-961f-82ee72b054a4
* * gcconfig.h: Add new case for powerpc EABI.geoffk2000-12-102-0/+20
| | | | | | | [PPC]: Handle embedded OS for powerpc simulator. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@38179 138bc75d-0d04-0410-961f-82ee72b054a4
* 2000-09-30 Bryce McKinlay <bryce@albatross.co.nz>bryce2000-09-305-19/+40
| | | | | | | | | | * configure.in: Define GC_GCJ_SUPPORT. Define NO_DEBUGGING in cross-compile configuration only. * Makefile.am: Build gcj_mlc.c. * configure, Makefile.in: Rebuilt. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@36678 138bc75d-0d04-0410-961f-82ee72b054a4
* * ltconfig, ltmain.sh, libtool.m4: Updated from libtoolaoliva2000-09-301-34/+35
| | | | | | | | multi-language branch, to work around Solaris' /bin/sh bug. Rebuilt all affected `configure' scripts. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@36673 138bc75d-0d04-0410-961f-82ee72b054a4
* * acinclude.m4: Include libtool macros from the top level.aoliva2000-09-104-527/+652
| | | | | | | * aclocal.m4, configure: Rebuilt. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@36287 138bc75d-0d04-0410-961f-82ee72b054a4
* Fix for PR libgcj/230:green2000-09-043-7/+7
| | | | | | | | | * mark.c (GC_mark_from_mark_stack): Remove call to GC_debug_object_start. * gc_priv.h (GC_debug_object_start): Remove prototype. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@36145 138bc75d-0d04-0410-961f-82ee72b054a4
* * gcconfig.h [OSF1] (_end): Declare as `int'.aoliva2000-08-162-1/+5
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@35749 138bc75d-0d04-0410-961f-82ee72b054a4
* * gc_priv.h (GC_generic_malloc_inner): Prototype.tromey2000-08-023-11/+25
| | | | | | | | | | | | (GC_generic_malloc): Likewise. (GC_add_to_black_list_normal): Likewise. (GC_find_header): Likewise. (GC_ADD_TO_BLACK_LIST_NORMAL): Cast bits argument to word. * gc_mark.h (GC_find_start): Prototype. (GC_signal_mark_stack_overflow): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@35431 138bc75d-0d04-0410-961f-82ee72b054a4
* * configure.in (THREADS): Don't --enable-threads on IRIX <= 5.*.aoliva2000-07-243-0/+11
| | | | | | | * configure: Rebuilt. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@35218 138bc75d-0d04-0410-961f-82ee72b054a4
* * dyn_load.c (GC_scratch_last_end_ptr): Don't declare a #define.aoliva2000-07-242-0/+6
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@35217 138bc75d-0d04-0410-961f-82ee72b054a4
* 2000-06-20 Bryce McKinlay <bryce@albatross.co.nz>bryce2000-06-208-24/+55
| | | | | | | | Imported version 5.1. * acinclude.m4: Push version to 5.1. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@34610 138bc75d-0d04-0410-961f-82ee72b054a4
* This commit was generated by cvs2svn to compensate for changes in r34605,bryce2000-06-192-6/+42
| | | | | | | which included commits to RCS files with non-trunk default branches. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@34606 138bc75d-0d04-0410-961f-82ee72b054a4
* 2000-06-19 Andrew Haley <aph@cygnus.com>aph2000-06-192-1/+8
| | | | | | | * os_dep.c (read): Pass two dummy args to syscall(). git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@34598 138bc75d-0d04-0410-961f-82ee72b054a4
* 2000-05-11 Bryce McKinlay <bryce@albatross.co.nz>bryce2000-05-108-13/+50
| | | | | | | | Imported 5.0 release version. * acinclude.m4: Increment version to 5.0. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@33832 138bc75d-0d04-0410-961f-82ee72b054a4
* 2000-05-07 Bryce McKinlay <bryce@albatross.co.nz>bryce2000-05-0713-48/+112
| | | | | | | | Imported version 5.0alpha7. * acinclude.m4: Update version to 5.0a7. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@33750 138bc75d-0d04-0410-961f-82ee72b054a4
* This commit was generated by cvs2svn to compensate for changes in r33746,bryce2000-05-064-8/+21
| | | | | | | which included commits to RCS files with non-trunk default branches. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@33747 138bc75d-0d04-0410-961f-82ee72b054a4
* Fixed ChangeLog merge snafutromey2000-04-271-1/+0
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@33453 138bc75d-0d04-0410-961f-82ee72b054a4
* <<<<<<< ChangeLogtromey2000-04-279-102/+206
| | | | | | | | | | | | | | | | | | | | | 2000-04-26 Jakub Jelinek <jakub@redhat.com> * gcconfig.h (SPARC): Define ALIGNMENT to 8 for 64bit SPARC. (SPARC/LINUX): Use GC_SysVGetDataStart instead of LINUX_DATA_START - sparc glibc does not provide it. (SAVE_CALL_CHAIN, ASM_CLEAR_CODE): Define on sparc*-linux*. Make STACKBOTTOM depend on the wordsize. * os_dep.c (GC_SysVGetDataStart): Compile in on sparc*-linux*. (struct frame): Declare on sparc*-linux*. (GC_save_callers): Bias the frame pointers if needed (sparc64). * mach_dep.c (GC_save_regs_in_stack): Optimize on sparc32. Implement on sparc64. (GC_clear_stack_inner): Implement on sparc64. * gc_priv.h (GC_test_and_set): Implement for sparc. * linux_threads.c (GC_suspend_handler, GC_push_all_stacks): Use git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@33452 138bc75d-0d04-0410-961f-82ee72b054a4
* * gcconfig.h (DYNAMIC_LOADING): Define for PPC Linux.tromey2000-04-242-0/+5
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@33367 138bc75d-0d04-0410-961f-82ee72b054a4
* * Makefile.am, Makefile.in: irix_threads.c is nowbryce2000-04-194-73/+145
| | | | | | | | hpux_irix_threads.c. * Makefile.orig: Updated from gc distribution Makefile. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@33255 138bc75d-0d04-0410-961f-82ee72b054a4
* Imported version version 5.0alpha6.bryce2000-04-1944-2161/+1480
| | | | | | | | | | * acinclude.m4: Bump version to 5.0a6. * configure.in: Don't use alpha_mach_dep.s. * include/private/config.h, irix_threads.c gc_watcom.asm: Delete obsolete files. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@33251 138bc75d-0d04-0410-961f-82ee72b054a4
* This commit was generated by cvs2svn to compensate for changes in r33244,bryce2000-04-1911-135/+484
| | | | | | | which included commits to RCS files with non-trunk default branches. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@33245 138bc75d-0d04-0410-961f-82ee72b054a4
* Initial revisionbryce2000-04-193-0/+488
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@33241 138bc75d-0d04-0410-961f-82ee72b054a4
* 2000-03-26 Anthony Green <green@redhat.com>green2000-04-022-2/+4
| | | | | | | * misc.c (GC_enable): Always define GC_enable and GC_disable. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@32867 138bc75d-0d04-0410-961f-82ee72b054a4
* * gc.h (dlopen): Define as GC_dlopen on Linux.tromey2000-02-143-6/+30
| | | | | | | | (GC_dlopen): Declare on Linux. * dyn_load.c (GC_dlopen): Define for Linux. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@31970 138bc75d-0d04-0410-961f-82ee72b054a4
* * gcconfig.h (DATASTART): Add missing extern declarationgreen2000-01-292-0/+6
| | | | | | | for data_start on powerpc. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@31677 138bc75d-0d04-0410-961f-82ee72b054a4
* 1999-12-22 Bryce McKinlay <bryce@albatross.co.nz>bryce1999-12-242-0/+25
| | | | | | | | * linux_threads.c: Don't block SIGINT, SIGQUIT, SIGTERM in the NO_SIGNALS case. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@31083 138bc75d-0d04-0410-961f-82ee72b054a4
* Alpha Linux changes.green1999-12-202-0/+5
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@31030 138bc75d-0d04-0410-961f-82ee72b054a4
* * gcconfig.h: Use libgcj hack for Alpha Linux.green1999-12-204-12/+16
| | | | | | | | | Undefine MPROTEXT_VDB (from Jeff Sturm). * os_dep.c: Remove Alpha Linux hacks. * misc.c: Ditto. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@31028 138bc75d-0d04-0410-961f-82ee72b054a4
* * aclocal.m4, configure: Rebuilt.tromey1999-12-136-5/+12
| | | | | | | | | * acinclude.m4: Changed version to 5.0a4. * Makefile.in: Rebuilt. * Makefile.am (libgcjgc_la_LDFLAGS): Changed version to 1:1:0. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@30893 138bc75d-0d04-0410-961f-82ee72b054a4
* Oops. Date was wrong.green1999-12-121-1/+1
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@30876 138bc75d-0d04-0410-961f-82ee72b054a4
* * gcconfig.h (DATASTART): Define as (&data_start) for PowerPCgreen1999-12-124-10/+14
| | | | | | | | | | | Linux. (DYNAMIC_LOADING): Define for PowerPC Linux. * os_dep.c: Remove some special cases for PowerPC Linux. * misc.c (GC_init_inner): Don't call GC_init_linux_data_start for PowerPC Linux. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@30873 138bc75d-0d04-0410-961f-82ee72b054a4
* * Makefile.in: Rebuilt.tromey1999-11-043-8/+9
| | | | | | | * Makefile.am (libgcjgc_la_SOURCES): Removed quick_threads.c. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@30396 138bc75d-0d04-0410-961f-82ee72b054a4
* * misc.c (GC_init_inner): Don't call GC_init_linuxppc().tromey1999-11-042-8/+4
| | | | | | | (GC_thr_init): Don't declare. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@30395 138bc75d-0d04-0410-961f-82ee72b054a4
* * configure: Rebuilt.tromey1999-11-049-83/+15
| | | | | | | | | | | | | * configure.in: Removed qt threads case. * dyn_load.c: Don't mention QUICK_THREADS. * os_dep.c: Don't mention QUICK_THREADS. * misc.c: Don't mention QUICK_THREADS. * gcconfig.h: Don't mention QUICK_THREADS. * gc_priv.h: Removed QUICK_THREADS code. * quick_threads.c: Removed. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@30394 138bc75d-0d04-0410-961f-82ee72b054a4
* * gcconfig.h: Merged in local changes from old config.h.tromey1999-11-032-11/+35
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@30376 138bc75d-0d04-0410-961f-82ee72b054a4
* 1999-11-02 Bryce McKinlay <bryce@albatross.co.nz>bryce1999-11-032-1/+7
| | | | | | | * gcconfig.h: Don't define MPROTECT_VDB on Linux/i386. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@30364 138bc75d-0d04-0410-961f-82ee72b054a4
* * quick_threads.c: Include gcconfig.h, not boehm-config.h.tromey1999-11-032-1/+3
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@30360 138bc75d-0d04-0410-961f-82ee72b054a4
* * configure: Rebuilt.tromey1999-11-038-1059/+19
| | | | | | | | | | | | | | * configure.in: Don't create boehm-config.h. * Makefile.in: Rebuilt. * Makefile.am (libgcjgc_la_SOURCES): Reference gcconfig.h, not config.h. ($(all_objs)): Depend on gcconfig.h. * gc_priv.h: Reference GCCONFIG_H, not CONFIG_H. * gcconfig.h: Define GCCONFIG_H, not CONFIG_H. * config.h: Removed. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@30358 138bc75d-0d04-0410-961f-82ee72b054a4
* Merged GC 5.0alpha4 with local changes, plus:tromey1999-11-0160-1927/+3741
| | | | | | | | | | | * Makefile.in: Rebuilt. * Makefile.am (gctest_LDADD): Added THREADLIB. (TESTS): New macro. * configure: Rebuilt. * configure.in (INCLUDES): New subst. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@30332 138bc75d-0d04-0410-961f-82ee72b054a4
* This commit was generated by cvs2svn to compensate for changes in r30327,tromey1999-11-0110-77/+428
| | | | | | | which included commits to RCS files with non-trunk default branches. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@30328 138bc75d-0d04-0410-961f-82ee72b054a4
* Initial revisiontromey1999-11-019-0/+3400
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@30324 138bc75d-0d04-0410-961f-82ee72b054a4
* I am committing the following changes to enable the picojava port. Igreen1999-10-023-1/+24
| | | | | | | will also forward them to Boehm. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@29767 138bc75d-0d04-0410-961f-82ee72b054a4
* * aclocal.m4, configure: Rebuilt.tromey1999-09-284-348/+689
| | | | | | | * acinclude.m4 (LIB_AC_PROG_CC, LIB_AC_PROG_CXX): Provide git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@29698 138bc75d-0d04-0410-961f-82ee72b054a4
* Tue Aug 10 00:08:29 1999 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>tromey1999-08-172-8/+22
| | | | | | | | * gc_priv.h: Merged IRIX thread changes from include/private/gc_priv.h. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@28740 138bc75d-0d04-0410-961f-82ee72b054a4
* * Makefile.in: Rebuilt.green1999-08-106-80/+104
| | | | | | | | | | | | | * Makefile.am (toolexeclibdir): Add $(MULTISUBDIR) even for native builds. * configure: Rebuilt. * configure.in: Properly align --help output, fix capitalization and punctuation. * acinclude.m4: Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@28638 138bc75d-0d04-0410-961f-82ee72b054a4
* Removed extra ';;'tromey1999-08-042-2/+0
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@28516 138bc75d-0d04-0410-961f-82ee72b054a4