]> oss.titaniummirror.com Git - tinyos-2.x.git/blobdiff - tos/interfaces/ReadRef.nc
safe tinyos annotations (all in nesdoc comments)
[tinyos-2.x.git] / tos / interfaces / ReadRef.nc
index 744b5bc73f68cfbd8ce8f606d24f175502ab7a7f..d383e04687bdd3bd79b2607e6dc23b96075dd752 100644 (file)
@@ -51,7 +51,7 @@ interface ReadRef<val_t> {
   /**
    * Initiates a read of the value.
    * 
-   * @param val a pointer to space that will be filled by the value
+   * @param 'val_t* ONE val' a pointer to space that will be filled by the value
    *
    * @return SUCCESS if a readDone() event will eventually come back.
    */
@@ -62,7 +62,7 @@ interface ReadRef<val_t> {
    * be the same as the original pointer passed to read().
    *
    * @param result SUCCESS if the read() was successful
-   * @param val a pointer to the value that has been read
+   * @param 'val_t* ONE val' a pointer to the value that has been read
    */
   event void readDone( error_t result, val_t* val );
 }