Skip to content
Snippets Groups Projects
Commit 26133989 authored by dsrogers's avatar dsrogers
Browse files

Add extern flag to avoid multiple symbol errors on Mac os X

parent c4ec8f2a
No related branches found
No related tags found
No related merge requests found
......@@ -16,7 +16,7 @@ extern void checkFreeListSanity(void);
nat countFreeList(void);
#endif
lnat n_alloc_blocks; // currently allocated blocks
lnat hw_alloc_blocks; // high-water allocated blocks
extern lnat n_alloc_blocks; // currently allocated blocks
extern lnat hw_alloc_blocks; // high-water allocated blocks
#endif /* BLOCK_ALLOC_H */
......@@ -39,7 +39,7 @@ extern SpinLock gc_alloc_block_sync;
#endif
#if defined(PROF_SPIN) && defined(THREADED_RTS)
StgWord64 whitehole_spin;
extern StgWord64 whitehole_spin;
#endif
#define WORK_UNIT_WORDS 128
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment