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.


initial simulation functionality
[palacios.git] / palacios / include / palacios / vmm_barrier.h
index 19f54fc..605c814 100644 (file)
@@ -42,12 +42,22 @@ struct guest_info;
 int v3_init_barrier(struct v3_vm_info * vm_info);
 int v3_deinit_barrier(struct v3_vm_info * vm_info);
 
+
 int v3_raise_barrier(struct v3_vm_info * vm_info, struct guest_info * local_core);
 int v3_lower_barrier(struct v3_vm_info * vm_info);
 
 int v3_wait_at_barrier(struct guest_info * core);
 
 
+/* Special Barrier activation functions. 
+ *  DO NOT USE THESE UNLESS YOU KNOW WHAT YOU ARE DOING
+ */
+int v3_raise_barrier_nowait(struct v3_vm_info * vm_info, struct guest_info * local_core);
+int v3_wait_for_barrier(struct v3_vm_info * vm_info, struct guest_info * local_core);
+/* ** */
+
+
+
 #endif
 
 #endif