From: donnie@darthik.com Date: Fri, 3 Apr 2009 03:43:22 +0000 (+0000) Subject: Fixed error in order of EventTypeDescriptions -- seq and par GC come after start... X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=commitdiff_plain;h=0292156b69dbbf7ee2b494ba26ca1b7f28182ab6 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. --- diff --git a/rts/eventlog/EventLog.c b/rts/eventlog/EventLog.c index 3411235..98ccaa5 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" };