summaryrefslogtreecommitdiff
path: root/rts/eventlog
diff options
context:
space:
mode:
authordonnie@darthik.com <unknown>2009-04-03 03:43:22 +0000
committerdonnie@darthik.com <unknown>2009-04-03 03:43:22 +0000
commit0292156b69dbbf7ee2b494ba26ca1b7f28182ab6 (patch)
tree74b10ba67f9f98392134916a14c2bc399cd2677b /rts/eventlog
parente8d7985d56595f6b8004546bedc41627ca70c528 (diff)
downloadhaskell-0292156b69dbbf7ee2b494ba26ca1b7f28182ab6.tar.gz
Fixed error in order of EventTypeDescriptions -- seq and par GC come after start and finish GC.
EventTypeDescriptions order must be synchronized with the event type definitions in includes/EventLogFormat.h for the definitions to correctly index with the matching description.
Diffstat (limited to 'rts/eventlog')
-rw-r--r--rts/eventlog/EventLog.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/rts/eventlog/EventLog.c b/rts/eventlog/EventLog.c
index 341123530c..98ccaa578b 100644
--- a/rts/eventlog/EventLog.c
+++ b/rts/eventlog/EventLog.c
@@ -45,10 +45,10 @@ char *EventDesc[] = {
"Steal spark",
"Shutdown",
"Wakeup thread",
- "Request sequential GC",
- "Request parallel GC",
"Starting GC",
"Finished GC",
+ "Request sequential GC",
+ "Request parallel GC",
"Create spark"
};