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.


Fixed interface error in keyed streams and build error
Peter Dinda [Thu, 7 Apr 2011 23:02:34 +0000 (18:02 -0500)]
palacios/include/palacios/vmm_keyed_stream.h
palacios/src/palacios/Makefile

index b3de41c..e06535d 100644 (file)
@@ -88,14 +88,15 @@ struct v3_keyed_stream_hooks {
     v3_keyed_stream_key_t (*open_key)(v3_keyed_stream_t stream,
                                      char *key);
 
-    void (*close_key)(v3_keyed_stream_t stream,
-                     char *key);
+    void (*close_key)(v3_keyed_stream_t stream, 
+                     v3_keyed_stream_key_t key);
     
 
     sint64_t (*write_key)(v3_keyed_stream_t stream,
                          v3_keyed_stream_key_t key,
                          void *buf, 
                          sint64_t len);
+
     sint64_t (*read_key)(v3_keyed_stream_t stream,
                         v3_keyed_stream_key_t key,
                         void *buf, 
index dfc16c6..3af02b7 100644 (file)
@@ -71,7 +71,7 @@ obj-$(CONFIG_VNET) += vmm_vnet_core.o
 obj-$(CONFIG_FILE) += vmm_file.o
 obj-$(CONFIG_CONSOLE) += vmm_console.o vmm_stream.o
 obj-$(CONFIG_GRAPHICS_CONSOLE) += vmm_graphics_console.o
-obj-$(CONFIG_KEYED_STREAM) += vmm_keyed_stream.o
+obj-$(CONFIG_KEYED_STREAMS) += vmm_keyed_stream.o
 
 
 obj-$(CONFIG_SYMBIOTIC) += vmm_symbiotic.o vmm_symspy.o