blob: 29b29f3638532b0f04b2b89162eae0bc1da15b8d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
/* -----------------------------------------------------------------------------
*
* (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://ghc.haskell.org/trac/ghc/wiki/Commentary/Rts/Storage/GC
*
* ---------------------------------------------------------------------------*/
#ifndef SM_SWEEP_H
#define SM_SWEEP_H
RTS_PRIVATE void sweep(generation *gen);
#endif /* SM_SWEEP_H */
// Local Variables:
// mode: C
// fill-column: 80
// indent-tabs-mode: nil
// c-basic-offset: 4
// buffer-file-coding-system: utf-8-unix
// End:
|