diff options
author | bryce <bryce@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-03-31 00:15:36 +0000 |
---|---|---|
committer | bryce <bryce@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-03-31 00:15:36 +0000 |
commit | 8f3c6510d5f1d2a0ebc711886314ad3b625c58f1 (patch) | |
tree | e89bac1035c7375913b045ac3b31c43d2fb7bb72 /boehm-gc | |
parent | b8536bfb6def125f4f24af5e4268fcd8541d02f2 (diff) | |
download | gcc-8f3c6510d5f1d2a0ebc711886314ad3b625c58f1.tar.gz |
2002-03-30 Krister Walfridsson <cato@df.lth.se>
* include/private/gcconfig.h: define DYNAMIC_LOADING for ELF
NetBSD/i386.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@51616 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'boehm-gc')
-rw-r--r-- | boehm-gc/ChangeLog | 17 | ||||
-rw-r--r-- | boehm-gc/include/private/gcconfig.h | 3 |
2 files changed, 20 insertions, 0 deletions
diff --git a/boehm-gc/ChangeLog b/boehm-gc/ChangeLog index 3c22533657f..571e792feb5 100644 --- a/boehm-gc/ChangeLog +++ b/boehm-gc/ChangeLog @@ -1,3 +1,20 @@ +2002-03-30 Krister Walfridsson <cato@df.lth.se> + + * include/private/gcconfig.h: define DYNAMIC_LOADING for ELF + NetBSD/i386. + +2002-03-29 Hans Boehm <Hans_Boehm@hp.com> + + * linux_threads.c (return_free_lists): Clear fl[i] unconditionally. + (GC_local_gcj_malloc): Add assertion. + (start_mark_threads): Fix abort message. + * mark.c (GC_mark_from): Generalize assertion. + * reclaim.c (GC_clear_fl_links): New function. + (GC_start_reclaim): Must clear some freelist links. + * include/private/specific.h, specific.c: Add assertions. + Safer definition for INVALID_QTID, quick_thread_id. Fix/add comments. + Rearrange tse fields. + 2002-03-27 Richard Henderson <rth@redhat.com> * os_dep.c (GC_init_linux_data_start): Fix references to diff --git a/boehm-gc/include/private/gcconfig.h b/boehm-gc/include/private/gcconfig.h index 71cc504dfb1..efbfc39c79a 100644 --- a/boehm-gc/include/private/gcconfig.h +++ b/boehm-gc/include/private/gcconfig.h @@ -1063,6 +1063,9 @@ # endif # ifdef NETBSD # define OS_TYPE "NETBSD" +# ifdef __ELF__ +# define DYNAMIC_LOADING +# endif # endif # ifdef THREE86BSD # define OS_TYPE "THREE86BSD" |