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.


add ability to destroy hashtable iterators
[palacios.git] / palacios / src / palacios / vmm_hashtable.c
index 00e6f52..fd8f3a2 100644 (file)
@@ -733,6 +733,11 @@ int v3_htable_iter_search(struct hashtable_iter * iter,
     return 0;
 }
  
+void v3_destroy_htable_iter(struct hashtable_iter * iter) {
+    if (iter) {
+        V3_Free(iter);
+    }
+}