Revision: 9079
Author: [email protected]
Date: Fri Oct 15 05:47:13 2010
Log: Remove PermutationWorker top level event; obscures individual permutation compiles.

Review by: [email protected]
http://code.google.com/p/google-web-toolkit/source/detail?r=9079

Modified:
 /trunk/dev/core/src/com/google/gwt/dev/PermutationWorkerFactory.java
/trunk/dev/core/src/com/google/gwt/dev/util/log/speedtracer/CompilerEventType.java

=======================================
--- /trunk/dev/core/src/com/google/gwt/dev/PermutationWorkerFactory.java Fri Aug 6 12:01:02 2010 +++ /trunk/dev/core/src/com/google/gwt/dev/PermutationWorkerFactory.java Fri Oct 15 05:47:13 2010
@@ -61,8 +61,6 @@
       }

       public void run() {
-        Event permutationWorkerEvent =
- SpeedTracerLogger.start(CompilerEventType.PERMUTATION_WORKER, "name", worker.getName());
         Result threadDeathResult = Result.FAIL;
         try {
           while (true) {
@@ -90,7 +88,6 @@
         } catch (InterruptedException e) {
           return;
         } finally {
-          permutationWorkerEvent.end();
           // Record why I died.
           try {
             resultsQueue.put(threadDeathResult);
=======================================
--- /trunk/dev/core/src/com/google/gwt/dev/util/log/speedtracer/CompilerEventType.java Wed Sep 15 10:32:35 2010 +++ /trunk/dev/core/src/com/google/gwt/dev/util/log/speedtracer/CompilerEventType.java Fri Oct 15 05:47:13 2010
@@ -44,7 +44,6 @@
   BUILD_AST("BuildAST", "DarkGoldenRod"), //
   FUNCTION_CLUSTER("JsFunctionClusterer","Cornflower"), //
   BLOCKED("Blocked", "FloralWhite"), //
-  PERMUTATION_WORKER("PermuationWorker", "SpringGreen"), //
   GET_ALL_REBINDS("GetAllPossibleRebindAnswers", "Brown"), //
   FIND_ENTRY_POINTS("FindEntryPoints", "SlateGray"), //
   VALIDATE("Validate", "YellowGreen"), //

--
http://groups.google.com/group/Google-Web-Toolkit-Contributors

Reply via email to