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.


Merge branch 'devel' of ssh://newskysaw.cs.northwestern.edu/home/palacios/palacios...
[palacios.git] / linux_usr / v3_user_host_dev.h
1 #ifndef _V3_USER_HOST_DEV_
2 #define _V3_USER_HOST_DEV_
3
4 #include <stdint.h>
5 #include "iface-host-dev.h"
6
7 int v3_user_host_dev_rendezvous(char *vmdev, char *url); // returns devfd for use in poll/select
8 int v3_user_host_dev_depart(int devfd);
9
10 int v3_user_host_dev_have_request(int devfd);
11 int v3_user_host_dev_pull_request(int devfd, struct palacios_host_dev_host_request_response **req);
12 int v3_user_host_dev_push_response(int devfd, struct palacios_host_dev_host_request_response *resp);
13
14 uint64_t v3_user_host_dev_read_guest_mem(int devfd, void *gpa, void *dest, uint64_t len);
15 uint64_t v3_user_host_dev_write_guest_mem(int devfd, void *gpa, void *src, uint64_t len);
16 int      v3_user_host_dev_inject_guest_irq(int devfd, uint8_t irq);
17
18 #endif
19