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 extension code for software interrupts
[palacios.git] / palacios / include / interfaces / sw_intr.h
index eb63cc9..5eedb3f 100644 (file)
 
 
 int v3_handle_swintr (struct guest_info * core);
-int v3_signal_swintr (struct guest_info * core, int vec);
+int v3_signal_swintr (struct guest_info * core, uint8_t vector);
+int v3_hook_swintr (struct guest_info * core,
+        uint8_t vector,
+        int (*handler)(struct guest_info * core, uint8_t vector, void * priv_data),
+        void * priv_data);
+int v3_hook_passthrough_swintr (struct guest_info * core, uint8_t vector);
 
 
 #endif