X-Git-Url: https://oss.titaniummirror.com/gitweb/?a=blobdiff_plain;f=tos%2Finterfaces%2FReadRef.nc;h=d383e04687bdd3bd79b2607e6dc23b96075dd752;hb=13e400e82fdf39ec7807c7b290136408044d6273;hp=744b5bc73f68cfbd8ce8f606d24f175502ab7a7f;hpb=1ba974b83d19fc41bf80acd52726f36f7f1df297;p=tinyos-2.x.git diff --git a/tos/interfaces/ReadRef.nc b/tos/interfaces/ReadRef.nc index 744b5bc7..d383e046 100644 --- a/tos/interfaces/ReadRef.nc +++ b/tos/interfaces/ReadRef.nc @@ -51,7 +51,7 @@ interface ReadRef { /** * 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 { * 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 ); }