mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-16 03:39:55 +08:00
aix_irix_threads.c: Move _THREADS checks after gc_priv.h include.
* aix_irix_threads.c: Move _THREADS checks after gc_priv.h include. * backgraph.c, include/private/gc_pmark.h: Always include gc.h. From-SVN: r86442
This commit is contained in:
parent
8ba141520c
commit
9a870e6c4c
@ -1,3 +1,8 @@
|
||||
2004-08-23 Hans Boehm <Hans.Boehm@hp.com>
|
||||
|
||||
* aix_irix_threads.c: Move _THREADS checks after gc_priv.h include.
|
||||
* backgraph.c, include/private/gc_pmark.h: Always include gc.h.
|
||||
|
||||
2004-08-23 Bryce McKinlay <mckinlay@redhat.com>
|
||||
|
||||
* win32_threads.c: Move GC_WIN32_THREADS check after gc_priv.h include.
|
||||
|
@ -26,9 +26,10 @@
|
||||
* as a base instead.
|
||||
*/
|
||||
|
||||
# include "private/gc_priv.h"
|
||||
|
||||
# if defined(GC_IRIX_THREADS) || defined(GC_AIX_THREADS)
|
||||
|
||||
# include "private/gc_priv.h"
|
||||
# include <pthread.h>
|
||||
# include <assert.h>
|
||||
# include <semaphore.h>
|
||||
|
@ -24,6 +24,8 @@
|
||||
* a growing space leak.
|
||||
*/
|
||||
|
||||
#include "gc.h" /* For configuration information. */
|
||||
|
||||
#ifdef MAKE_BACK_GRAPH
|
||||
|
||||
#define MAX_IN 10 /* Maximum in-degree we handle directly */
|
||||
|
@ -25,6 +25,8 @@
|
||||
#ifndef GC_PMARK_H
|
||||
# define GC_PMARK_H
|
||||
|
||||
# include "gc.h" /* For configuration */
|
||||
|
||||
# if defined(KEEP_BACK_PTRS) || defined(PRINT_BLACK_LIST)
|
||||
# include "dbg_mlc.h"
|
||||
# endif
|
||||
|
Loading…
Reference in New Issue
Block a user