diff probes.c @ 55:3bac84e4e56e

Works with correct matrix mult Nov 4 -- switch animators macros, many updates Changed all queues back to VMSQ variants #defines correct, protected, work-stealing, with compiler switch in and out
author Me
date Thu, 04 Nov 2010 18:13:18 -0700
parents f8508572f3de
children 7b799a46cc87
line diff
     1.1 --- a/probes.c	Tue Nov 02 16:43:01 2010 -0700
     1.2 +++ b/probes.c	Thu Nov 04 18:13:18 2010 -0700
     1.3 @@ -253,7 +253,7 @@
     1.4  VMS_impl__record_interval_start_in_probe( int32 probeID )
     1.5   { IntervalProbe *probe;
     1.6  
     1.7 -         DEBUG_MSG( dbgProbes, "record start of interval\n" )
     1.8 +         DEBUG( dbgProbes, "record start of interval\n" )
     1.9     probe = _VMSMasterEnv->intervalProbes[ probeID ];
    1.10     gettimeofday( &(probe->startStamp), NULL );
    1.11   }
    1.12 @@ -268,7 +268,7 @@
    1.13     struct timeval *endStamp, *startStamp;
    1.14     float64 startSecs, endSecs;
    1.15  
    1.16 -         DEBUG_MSG( dbgProbes, "record end of interval\n" )
    1.17 +         DEBUG( dbgProbes, "record end of interval\n" )
    1.18        //possible seg-fault if array resized by diff core right after this
    1.19        // one gets probe..?  Something like that?  Might be safe.. don't care
    1.20     probe = _VMSMasterEnv->intervalProbes[ probeID ];