Only reset the event log if logging is turned on (addendum to #4512)
authorSimon Marlow <marlowsd@gmail.com>
Fri, 10 Dec 2010 09:39:51 +0000 (09:39 +0000)
committerSimon Marlow <marlowsd@gmail.com>
Fri, 10 Dec 2010 09:39:51 +0000 (09:39 +0000)
rts/Schedule.c
rts/Trace.c
rts/Trace.h

index bf39c0a..0b1dec4 100644 (file)
@@ -1566,11 +1566,11 @@ forkProcess(HsStablePtr *entry
         initMutex(&cap->running_task->lock);
 #endif
 
-#if defined(TRACING)
-        abortEventLogging(); // abort eventlog inherited from parent
-        initEventLogging(); // child starts its own eventlog
+#ifdef TRACING
+        resetTracing();
 #endif
-       // Now, all OS threads except the thread that forked are
+
+        // Now, all OS threads except the thread that forked are
        // stopped.  We need to stop all Haskell threads, including
        // those involved in foreign calls.  Also we need to delete
        // all Tasks, because they correspond to OS threads that are
index be3fff7..53fc25a 100644 (file)
@@ -106,6 +106,14 @@ void freeTracing (void)
     }
 }
 
+void resetTracing (void)
+{
+    if (eventlog_enabled) {
+        abortEventLogging(); // abort eventlog inherited from parent
+        initEventLogging(); // child starts its own eventlog
+    }
+}
+
 /* ---------------------------------------------------------------------------
    Emitting trace messages/events
  --------------------------------------------------------------------------- */
index 4f3ebce..97d9514 100644 (file)
@@ -27,6 +27,7 @@
 void initTracing (void);
 void endTracing  (void);
 void freeTracing (void);
+void resetTracing (void);
 
 #endif /* TRACING */