Palacios Public Git Repository

To checkout Palacios execute

  git clone http://v3vee.org/palacios/palacios.web/palacios.git
This will give you the master branch. You probably want the devel branch or one of the release branches. To switch to the devel branch, simply execute
  cd palacios
  git checkout --track -b devel origin/devel
The other branches are similar.


V3_Yield_Timed(usec) was renamed V3_Sleep(usec)
Kevin Pedretti [Fri, 26 Oct 2012 16:36:27 +0000 (10:36 -0600)]
palacios/src/vnet/vnet_core.c

index dd29034..d10d18a 100644 (file)
@@ -1018,7 +1018,7 @@ static int vnet_tx_flush(void * args){
        if ((!VNET_ADAPTIVE_TX_KICK) || (noprogress_count < VNET_NOPROGRESS_LIMIT)) { 
            V3_Yield();
        } else {
-           V3_Yield_Timed(VNET_YIELD_USEC);
+           V3_Sleep(VNET_YIELD_USEC);
        }
 
     }