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.


added copyright tags
[palacios.git] / palacios / include / palacios / vmm_queue.h
index ee0e01a..82f8002 100644 (file)
@@ -1,3 +1,6 @@
+/* Northwestern University */
+/* (c) 2008, Jack Lange <jarusl@cs.northwestern.edu> */
+
 #ifndef __VMM_QUEUE_H__
 #define __VMM_QUEUE_H__
 
@@ -29,11 +32,11 @@ struct gen_queue {
 };
 
 
-struct gen_queue * create_queue();
-void init_queue(struct gen_queue * queue);
+struct gen_queue * v3_create_queue();
+void v3_init_queue(struct gen_queue * queue);
 
-void enqueue(struct gen_queue * queue, addr_t entry);
-addr_t dequeue(struct gen_queue * queue);
+void v3_enqueue(struct gen_queue * queue, addr_t entry);
+addr_t v3_dequeue(struct gen_queue * queue);