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.


Added implementation of VNET host hook functions
[palacios.releases.git] / palacios / src / vnet / vnet_host.c
index ea64c6d..9d3bb31 100644 (file)
@@ -52,7 +52,8 @@ struct vnet_thread * vnet_start_thread(int (*func)(void *), void *arg, char * na
 
 
 struct vnet_timer * vnet_create_timer(unsigned long interval, 
-       void (* timer_fun)(void * priv_data), void * priv_data){
+                                     void (* timer_fun)(void * priv_data), 
+                                     void * priv_data){
     struct vnet_timer * timer = NULL; 
 
     if((host_hooks) && host_hooks->timer_create){