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.


remove redundant data structure files
Lei Xia [Wed, 6 Apr 2011 22:18:05 +0000 (17:18 -0500)]
linux_module/palacios-ringbuf.h [deleted file]

diff --git a/linux_module/palacios-ringbuf.h b/linux_module/palacios-ringbuf.h
deleted file mode 100644 (file)
index aca8ba8..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-/* Ringbuffer implementation for Palacios
- */
-
-#ifndef PALACIOS_RINGBUF_H
-#define PALACIOS_RINGBUF_H
-
-extern struct v3_ringbuf * v3_create_ringbuf(unsigned int size);
-extern void v3_free_ringbuf(struct v3_ringbuf * ring);
-extern int v3_ringbuf_read(struct v3_ringbuf * ring, unsigned char * dst, unsigned int len);
-extern int v3_ringbuf_write(struct v3_ringbuf * ring, unsigned char * src, unsigned int len);
-
-
-
-#endif