Fix scoped type variables for expression type signatures
[ghc-hetmet.git] / rts / Weak.h
1 /* -----------------------------------------------------------------------------
2  *
3  * (c) The GHC Team, 1998-2005
4  *
5  * Weak pointers / finalizers
6  *
7  * ---------------------------------------------------------------------------*/
8
9 #ifndef WEAK_H
10 #define WEAK_H
11
12 #include "Capability.h"
13
14 void scheduleFinalizers(Capability *cap, StgWeak *w);
15 void markWeakList(void);
16
17 #endif