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.


Force Linux backend to allocate memory pages from lower address
[palacios.git] / linux_module / palacios-ringbuf.h
1 /* Ringbuffer implementation for Palacios
2  */
3
4 #ifndef PALACIOS_RINGBUF_H
5 #define PALACIOS_RINGBUF_H
6
7 extern struct v3_ringbuf * v3_create_ringbuf(unsigned int size);
8 extern void v3_free_ringbuf(struct v3_ringbuf * ring);
9 extern int v3_ringbuf_read(struct v3_ringbuf * ring, unsigned char * dst, unsigned int len);
10 extern int v3_ringbuf_write(struct v3_ringbuf * ring, unsigned char * src, unsigned int len);
11
12
13
14 #endif