X-Git-Url: https://oss.titaniummirror.com/gitweb/?a=blobdiff_plain;f=tos%2Flib%2Fnet%2FDeluge%2FDelugeMetadata.nc;h=3664bb2dc6e06b7a8634d4cc8ae81347dbbc90a3;hb=e014c5d251e1706ee383c01597ed49173c00c8f3;hp=d60044495a4ed13766bc8f959cd937ab77f996b5;hpb=3c0edd88ca1663f859090a7c33e720628bef5d61;p=tinyos-2.x.git diff --git a/tos/lib/net/Deluge/DelugeMetadata.nc b/tos/lib/net/Deluge/DelugeMetadata.nc index d6004449..3664bb2d 100644 --- a/tos/lib/net/Deluge/DelugeMetadata.nc +++ b/tos/lib/net/Deluge/DelugeMetadata.nc @@ -1,33 +1,14 @@ -/* - * "Copyright (c) 2000-2004 The Regents of the University of California. - * All rights reserved. - * - * Permission to use, copy, modify, and distribute this software and its - * documentation for any purpose, without fee, and without written agreement is - * hereby granted, provided that the above copyright notice, the following - * two paragraphs and the author appear in all copies of this software. - * - * IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR - * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT - * OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF - * CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - * - * THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES, - * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY - * AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS - * ON AN "AS IS" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO - * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS." - * - * Copyright (c) 2007 Johns Hopkins University. - * All rights reserved. - */ - /** - * @author Jonathan Hui - * @author Chieh-Jan Mike Liang - * @author Razvan Musaloiu-E. + * An interface for obtaining the identification data of an + * image. The pointer returned by readDone will be destroyed by the + * next read. + * + * @author Razvan Musaloiu-E. + * @author Chieh-Jan Mike Liang */ -interface DelugeMetadata { - command DelugeImgDesc* getImgDesc(imgnum_t imgNum); +interface DelugeMetadata +{ + command error_t read(uint8_t imgNum); + event void readDone(uint8_t imgNum, DelugeIdent* ident, error_t error); }