Fixed error in order of EventTypeDescriptions -- seq and par GC come after start...
authordonnie@darthik.com <unknown>
Fri, 3 Apr 2009 03:43:22 +0000 (03:43 +0000)
committerdonnie@darthik.com <unknown>
Fri, 3 Apr 2009 03:43:22 +0000 (03:43 +0000)
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

index 3411235..98ccaa5 100644 (file)
@@ -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"
 };