]> oss.titaniummirror.com Git - tinyos-2.x.git/blobdiff - tos/lib/tosthreads/csystem/VolumeMapC.nc
Merge TinyOS 2.1.1 into master.
[tinyos-2.x.git] / tos / lib / tosthreads / csystem / VolumeMapC.nc
index 2821a08c31e847662496d09fec1f5d10f3304fd9..ee2126fdffbabec327b12b39be9e9043f3416e4f 100644 (file)
@@ -22,6 +22,7 @@
 
 /**
  * @author Chieh-Jan Mike Liang <cliang4@cs.jhu.edu>
+ * @author J\97 çgila Bitsch Link <jo.bitsch@cs.rwth-aachen.de>
  */
 
 configuration VolumeMapC { 
@@ -30,6 +31,8 @@ configuration VolumeMapC {
     interface BlockWrite[uint8_t volume_id];
     interface LogRead[uint8_t volume_id];
     interface LogWrite[uint8_t volume_id];
+    interface ConfigStorage[uint8_t volume_id];
+    interface Mount[uint8_t volume_id];
   }
 } 
 
@@ -40,4 +43,7 @@ implementation {
   BlockWrite = VolumeMapP;
   LogRead = VolumeMapP;
   LogWrite = VolumeMapP;
+  
+  ConfigStorage = VolumeMapP;
+  Mount = VolumeMapP;
 }