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/Profiling.c | |
parent | 1f801e3abd16559f2120b7f482b19deb0c43a0c7 (diff) | |
download | haskell-ed12b7043fa98928f75c289a756fbcef546315f8.tar.gz |
Free more things that we allocate2006-12-16
Diffstat (limited to 'rts/Profiling.c')
-rw-r--r-- | rts/Profiling.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/rts/Profiling.c b/rts/Profiling.c index a8650788e9..4e759b6942 100644 --- a/rts/Profiling.c +++ b/rts/Profiling.c @@ -186,6 +186,12 @@ initProfiling1 (void) } void +freeProfiling1 (void) +{ + arenaFree(prof_arena); +} + +void initProfiling2 (void) { CostCentreStack *ccs, *next; |