blob: f149b667ac9f2f932c8c069e456381eb044af85e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* -----------------------------------------------------------------------------
*
* (c) The GHC Team 1998-2006
*
* Generational garbage collector: scavenging functions
*
* Documentation on the architecture of the Garbage Collector can be
* found in the online commentary:
*
* http://hackage.haskell.org/trac/ghc/wiki/Commentary/Rts/Storage/GC
*
* ---------------------------------------------------------------------------*/
void scavenge_loop (void);
rtsBool any_work (void);
void scavenge_mutable_list (generation *g);
|