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.


Guest mem gpa/gva memset functions
[palacios.git] / palacios / include / palacios / vm_guest_mem.h
index 7c0dbcf..fb98f69 100644 (file)
@@ -109,6 +109,8 @@ int v3_read_gva_memory(struct guest_info * guest_info, addr_t guest_va, int coun
 int v3_read_gpa_memory(struct guest_info * guest_info, addr_t guest_pa, int count, uint8_t * dest);
 int v3_write_gpa_memory(struct guest_info * guest_info, addr_t guest_pa, int count, uint8_t * src);
 int v3_write_gva_memory(struct guest_info * guest_info, addr_t guest_va, int count, uint8_t * src);
+int v3_set_gpa_memory(struct guest_info * guest_info, addr_t guest_pa, int count, uint8_t src);
+int v3_set_gva_memory(struct guest_info * guest_info, addr_t guest_va, int count, uint8_t src);
 
 
 #endif // ! __V3VEE__