From 0292156b69dbbf7ee2b494ba26ca1b7f28182ab6 Mon Sep 17 00:00:00 2001 From: "donnie@darthik.com" Date: Fri, 3 Apr 2009 03:43:22 +0000 Subject: [PATCH] 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. --- rts/eventlog/EventLog.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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" }; -- 1.7.10.4