]> oss.titaniummirror.com Git - tinyos-2.x.git/blobdiff - tos/interfaces/PacketLink.nc
Add an async version of ReadRef.
[tinyos-2.x.git] / tos / interfaces / PacketLink.nc
index 0b8e54ae1e2230c4287e9accfac477df086a748f..dd8285b2c62a9007090ab0cd1d318133f8c04769 100644 (file)
@@ -39,7 +39,7 @@ interface PacketLink {
   /**
    * Set the maximum number of times attempt message delivery
    * Default is 0
-   * @param msg
+   * @param 'message_t* ONE msg'
    * @param maxRetries the maximum number of attempts to deliver
    *     the message
    */
@@ -53,16 +53,19 @@ interface PacketLink {
   command void setRetryDelay(message_t *msg, uint16_t retryDelay);
 
   /** 
+   * @param 'message_t* ONE msg'
    * @return the maximum number of retry attempts for this message
    */
   command uint16_t getRetries(message_t *msg);
 
   /**
+   * @param 'message_t* ONE msg'
    * @return the delay between retry attempts in ms for this message
    */
   command uint16_t getRetryDelay(message_t *msg);
 
   /**
+   * @param 'message_t* ONE msg'
    * @return TRUE if the message was delivered.
    */
   command bool wasDelivered(message_t *msg);