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.


SVM reset capability + integration with multiboot+hvm reset capability
[palacios.git] / linux_module / util-queue.c
index 249b034..0dba00b 100644 (file)
@@ -20,6 +20,7 @@ void deinit_queue(struct gen_queue * queue) {
     while (dequeue(queue)) {
        ERROR("Freeing non-empty queue. PROBABLE MEMORY LEAK DETECTED\n");
     }
+    palacios_spinlock_deinit(&(queue->lock));
 }
 
 struct gen_queue * create_queue(unsigned int max_entries) {