diff options
author | Geoffrey Keating <geoffk@apple.com> | 2006-06-03 02:07:36 +0000 |
---|---|---|
committer | Geoffrey Keating <geoffk@gcc.gnu.org> | 2006-06-03 02:07:36 +0000 |
commit | 4f6d8cc800fc8a48fa5b8bbe728dd109c3b23fb2 (patch) | |
tree | 7db99eb5a7164070b8702b056eadc9042dc95f03 /boehm-gc/include | |
parent | 347b9c46e1653b9bdad22a394005b2c74abae764 (diff) | |
download | gcc-4f6d8cc800fc8a48fa5b8bbe728dd109c3b23fb2.zip gcc-4f6d8cc800fc8a48fa5b8bbe728dd109c3b23fb2.tar.gz gcc-4f6d8cc800fc8a48fa5b8bbe728dd109c3b23fb2.tar.bz2 |
Index: gcc/ChangeLog
2006-06-02 Geoffrey Keating <geoffk@apple.com>
* config/rs6000/host-darwin.c (sigaltstack): Protect prototype with
HAVE_DECL_SIGALTSTACK.
(MC_FLD): New.
(segv_handler): Use MC_FLD.
* configure.ac: Check for a sigaltstack declaration.
Compute HAS_MCONTEXT_T_UNDERSCORES on Darwin.
* configure: Regenerate.
* config.in: Regenerate.
Index: boehm-gc/ChangeLog
2006-06-02 Geoffrey Keating <geoffk@apple.com>
* configure.ac: Define HAS_PPC_THREAD_STATE_R0,
HAS_PPC_THREAD_STATE___R0, HAS_PPC_THREAD_STATE64_R0,
HAS_PPC_THREAD_STATE64___R0, HAS_I386_THREAD_STATE_EAX,
HAS_I386_THREAD_STATE___EAX.
* configure: Regenerate.
* include/gc_config.h.in: Regenerate.
* darwin_stop_world.c (PPC_RED_ZONE_SIZE): Use standard Darwin
macro names to determine value.
(THREAD_STATE): New.
(THREAD_FLD): New.
(GC_push_all_stacks): Use THREAD_STATE and THREAD_FLD in both versions.
From-SVN: r114339
Diffstat (limited to 'boehm-gc/include')
-rw-r--r-- | boehm-gc/include/gc_config.h.in | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/boehm-gc/include/gc_config.h.in b/boehm-gc/include/gc_config.h.in index cfaae9d..401de60 100644 --- a/boehm-gc/include/gc_config.h.in +++ b/boehm-gc/include/gc_config.h.in @@ -57,6 +57,24 @@ /* support for win32 threads */ #undef GC_WIN32_THREADS +/* i386_thread_state_t has field eax */ +#undef HAS_I386_THREAD_STATE_EAX + +/* i386_thread_state_t has field __eax */ +#undef HAS_I386_THREAD_STATE___EAX + +/* ppc_thread_state64_t has field r0 */ +#undef HAS_PPC_THREAD_STATE64_R0 + +/* ppc_thread_state64_t has field __r0 */ +#undef HAS_PPC_THREAD_STATE64___R0 + +/* ppc_thread_state_t has field r0 */ +#undef HAS_PPC_THREAD_STATE_R0 + +/* ppc_thread_state_t has field __r0 */ +#undef HAS_PPC_THREAD_STATE___R0 + /* Define to 1 if you have the <inttypes.h> header file. */ #undef HAVE_INTTYPES_H @@ -154,5 +172,5 @@ /* POSIX version of C Source */ #undef _POSIX_C_SOURCE -/* Use reentrant code */ +/* Required define if using POSIX threads */ #undef _REENTRANT |