X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?a=blobdiff_plain;f=palacios%2Finclude%2Fpalacios%2Fsvm_io.h;h=b2b1f58dd891accce1c9a1c73d7aa8be3a426063;hb=56f8088296ee4116a4811a2f4f843edd80a7748d;hp=adb220a986cc1e77adce6098340e9ec4232e453a;hpb=a109eb919a162bd7de58d62020801bc2e633be50;p=palacios.git diff --git a/palacios/include/palacios/svm_io.h b/palacios/include/palacios/svm_io.h index adb220a..b2b1f58 100644 --- a/palacios/include/palacios/svm_io.h +++ b/palacios/include/palacios/svm_io.h @@ -1,9 +1,16 @@ +/* (c) 2008, Jack Lange */ +/* (c) 2008, The V3VEE Project */ + #ifndef __SVM_IO_H #define __SVM_IO_H + +#ifdef __V3VEE__ + #include #include #include + struct svm_io_info { uint_t type : 1 PACKED; // (0=out, 1=in) uint_t rsvd : 1 PACKED; // Must be Zero @@ -25,7 +32,7 @@ int handle_svm_io_ins(struct guest_info * info); int handle_svm_io_out(struct guest_info * info); int handle_svm_io_outs(struct guest_info * info); - +#endif // !__V3VEE__ #endif