blob: e7904a90a81b04f31a5acca882da7f9f1c8c1e62 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* -----------------------------------------------------------------------------
*
* (c) The GHC Team 2008
*
* Simple mark/sweep, collecting whole blocks.
*
* 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 sweep(step *gen);
|