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.


hooking checkpoints into vmm execution
[palacios.git] / palacios / include / interfaces / vmm_file.h
index 9776913..46b89b1 100644 (file)
@@ -39,6 +39,7 @@ uint64_t v3_file_write(v3_file_t file, uint8_t * buf, uint64_t len, uint64_t off
 
 #define FILE_OPEN_MODE_READ    (1 << 0)
 #define FILE_OPEN_MODE_WRITE   (1 << 1)
+#define FILE_OPEN_MODE_CREATE        (1 << 2)
 
 struct v3_file_hooks {