diff options
author | Ian Lynagh <igloo@earth.li> | 2006-12-15 21:44:30 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2006-12-15 21:44:30 +0000 |
commit | ed12b7043fa98928f75c289a756fbcef546315f8 (patch) | |
tree | 1b551d714a16d884843f2d361bcb42ee4c78cccb /rts/Capability.h | |
parent | 1f801e3abd16559f2120b7f482b19deb0c43a0c7 (diff) | |
download | haskell-ed12b7043fa98928f75c289a756fbcef546315f8.tar.gz |
Free more things that we allocate2006-12-16
Diffstat (limited to 'rts/Capability.h')
-rw-r--r-- | rts/Capability.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/rts/Capability.h b/rts/Capability.h index dd17863c60..dedd6351b6 100644 --- a/rts/Capability.h +++ b/rts/Capability.h @@ -232,6 +232,9 @@ extern void grabCapability (Capability **pCap); #endif /* !THREADED_RTS */ +// Free a capability on exit +void freeCapability (Capability *cap); + /* ----------------------------------------------------------------------------- * INLINE functions... private below here * -------------------------------------------------------------------------- */ |