diff MasterLoop.c @ 189:91d0d2e06719

backoff won't be optimized out by gcc
author Merten Sach <msach@mailbox.tu-berlin.de>
date Fri, 03 Feb 2012 17:57:09 +0100
parents c3f458403cd6
children fb75c4b52d32
line diff
     1.1 --- a/MasterLoop.c	Fri Jan 13 11:49:05 2012 +0100
     1.2 +++ b/MasterLoop.c	Fri Feb 03 17:57:09 2012 +0100
     1.3 @@ -106,7 +106,6 @@
     1.4     slaveScheduler   = masterEnv->slaveScheduler;
     1.5     semanticEnv      = masterEnv->semanticEnv;
     1.6     
     1.7 -      //masterLoopStartPt:
     1.8     while(1){    //switch to core_loop and back to here is at end of loop
     1.9         
    1.10         //============================= MEASUREMENT STUFF =======================
    1.11 @@ -120,10 +119,10 @@
    1.12  
    1.13  
    1.14        //Poll each slot's Done flag
    1.15 -   numSlotsFilled = 0;
    1.16 -   /*
    1.17 +      numSlotsFilled = 0;
    1.18 +      /*
    1.19           Meas_startMasterLoop
    1.20 -    */
    1.21 +      */
    1.22     for( slotIdx = 0; slotIdx < NUM_SCHED_SLOTS; slotIdx++)
    1.23      {
    1.24        currSlot = schedSlots[ slotIdx ];