summaryrefslogtreecommitdiff
path: root/rts/sm
diff options
context:
space:
mode:
authorBen Gamari <bgamari.foss@gmail.com>2016-11-29 16:51:07 -0500
committerBen Gamari <ben@smart-cactus.org>2016-11-29 16:51:08 -0500
commit56d74515396c8b6360ba7898cbc4b68f0f1fb2ea (patch)
tree249bf410378d8203d37963c9b5e95636931f1fef /rts/sm
parent6f7ed1e51bf360621a3c2a447045ab3012f68575 (diff)
downloadhaskell-56d74515396c8b6360ba7898cbc4b68f0f1fb2ea.tar.gz
Fix type of GarbageCollect declaration
Test Plan: Validate Reviewers: simonmar, austin, erikd Subscribers: thomie Differential Revision: https://phabricator.haskell.org/D2764
Diffstat (limited to 'rts/sm')
-rw-r--r--rts/sm/GC.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/sm/GC.h b/rts/sm/GC.h
index 707d4b52d6..44ae7e35b2 100644
--- a/rts/sm/GC.h
+++ b/rts/sm/GC.h
@@ -18,7 +18,7 @@
#include "HeapAlloc.h"
-void GarbageCollect (rtsBool force_major_gc,
+void GarbageCollect (uint32_t collect_gen,
rtsBool do_heap_census,
uint32_t gc_type, Capability *cap, rtsBool idle_cap[]);