]> oss.titaniummirror.com Git - tinyos-2.x.git/blobdiff - tos/interfaces/BlockRead.nc
First, we'll pull the new FifoQueue component out of the baseline for now so its...
[tinyos-2.x.git] / tos / interfaces / BlockRead.nc
index eebaa280c6fb80a5b0ed7b18d048122ba676520d..156fe544cac78944f76ad53e806249178d049d08 100644 (file)
@@ -67,27 +67,6 @@ interface BlockRead {
   event void readDone(storage_addr_t addr, void* buf, storage_len_t len, 
                      error_t error);
   
-  /**
-   * Initiate a verify operation to verify the integrity of the
-   * data. This operation is only valid after a commit operation from
-   * <code>BlockWrite</code> has been completed. On SUCCESS, the
-   * <code>verifyDone</code> event will signal completion of the
-   * operation.
-   *
-   * @return 
-   *   <li>SUCCESS if the request was accepted, 
-   *   <li>EBUSY if a request is already being processed.
-   */
-  command error_t verify();
-  
-  /**
-   * Signals the completion of a verify operation.
-   *
-   * @param error SUCCESS if the operation was successful, FAIL if
-   *   it failed
-   */
-  event void verifyDone(error_t error);
-  
   /**
    * Initiate a crc computation. On SUCCESS, the
    * <code>computeCrcDone</code> event will signal completion of the