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.


cleaned up emulation interface
[palacios.git] / palacios / include / palacios / vmm_emulator.h
index 86c85c8..f149d02 100644 (file)
 
 
 
+int v3_emulate_write_op(struct guest_info * info, addr_t write_gva, addr_t write_gpa, addr_t dst_addr, 
+                      int (*write_fn)(addr_t guest_addr, void * src, uint_t length, void * priv_data), 
+                      void * priv_data);
 
-int v3_emulate_write_op(struct guest_info * info, addr_t fault_gva, addr_t write_gpa, addr_t * dst_addr);
+int v3_emulate_read_op(struct guest_info * info, addr_t read_gva, addr_t read_gpa, addr_t src_addr,
+                      int (*read_fn)(addr_t guest_addr, void * dst, uint_t length, void * priv_data), 
+                      void * priv_data);
 
 
 #endif // !__V3VEE__