merge upstream HEAD
[ghc-hetmet.git] / rts / sm / Sweep.h
1 /* -----------------------------------------------------------------------------
2  *
3  * (c) The GHC Team 2008
4  *
5  * Simple mark/sweep, collecting whole blocks.
6  *
7  * Documentation on the architecture of the Garbage Collector can be
8  * found in the online commentary:
9  * 
10  *   http://hackage.haskell.org/trac/ghc/wiki/Commentary/Rts/Storage/GC
11  *
12  * ---------------------------------------------------------------------------*/
13
14 #ifndef SM_SWEEP_H
15 #define SM_SWEEP_H
16
17 RTS_PRIVATE void sweep(generation *gen);
18
19 #endif /* SM_SWEEP_H */