[Tinyos-contrib-commits] CVS: tinyos-1.x/contrib/wustl/apps/Agilla/components/AgentReceiver AgentReceiverC.nc, 1.6, 1.7 AgentReceiverDummy.nc, 1.1, 1.2 AgentReceiverI.nc, 1.1, 1.2 ReceiveCodeM.nc, 1.4, 1.5 ReceiveHeapM.nc, 1.2, 1.3 ReceiveOpStackM.nc, 1.2, 1.3 ReceiveRxnM.nc, 1.3, 1.4 ReceiveStateM.nc, 1.8, 1.9 ReceiverCoordinatorI.nc, 1.2, 1.3 ReceiverCoordinatorM.nc, 1.8, 1.9

Chien-Liang Fok chien-liang at users.sourceforge.net
Thu May 18 12:58:43 PDT 2006


Update of /cvsroot/tinyos/tinyos-1.x/contrib/wustl/apps/Agilla/components/AgentReceiver
In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv25569/contrib/wustl/apps/Agilla/components/AgentReceiver

Modified Files:
	AgentReceiverC.nc AgentReceiverDummy.nc AgentReceiverI.nc 
	ReceiveCodeM.nc ReceiveHeapM.nc ReceiveOpStackM.nc 
	ReceiveRxnM.nc ReceiveStateM.nc ReceiverCoordinatorI.nc 
	ReceiverCoordinatorM.nc 
Log Message:



Index: AgentReceiverDummy.nc
===================================================================
RCS file: /cvsroot/tinyos/tinyos-1.x/contrib/wustl/apps/Agilla/components/AgentReceiver/AgentReceiverDummy.nc,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** AgentReceiverDummy.nc	10 Nov 2005 01:31:05 -0000	1.1
--- AgentReceiverDummy.nc	18 May 2006 19:58:40 -0000	1.2
***************
*** 1,78 ****
! // $Id$
! 
! /* Agilla - A middleware for wireless sensor networks.
!  * Copyright (C) 2004, Washington University in Saint Louis 
!  * By Chien-Liang Fok.
!  * 
!  * Washington University states that Agilla is free software; 
!  * you can redistribute it and/or modify it under the terms of 
!  * the current version of the GNU Lesser General Public License 
!  * as published by the Free Software Foundation.
!  * 
!  * Agilla is distributed in the hope that it will be useful, but 
!  * THERE ARE NO WARRANTIES, WHETHER ORAL OR WRITTEN, EXPRESS OR 
!  * IMPLIED, INCLUDING BUT NOT LIMITED TO, IMPLIED WARRANTIES OF 
!  * MERCHANTABILITY OR FITNESS FOR A PARTICULAR USE.
!  *
!  * YOU UNDERSTAND THAT AGILLA IS PROVIDED "AS IS" FOR WHICH NO 
!  * WARRANTIES AS TO CAPABILITIES OR ACCURACY ARE MADE. THERE ARE NO 
!  * WARRANTIES AND NO REPRESENTATION THAT AGILLA IS FREE OF 
!  * INFRINGEMENT OF THIRD PARTY PATENT, COPYRIGHT, OR OTHER 
!  * PROPRIETARY RIGHTS.  THERE ARE NO WARRANTIES THAT SOFTWARE IS 
!  * FREE FROM "BUGS", "VIRUSES", "TROJAN HORSES", "TRAP DOORS", "WORMS", 
!  * OR OTHER HARMFUL CODE.  
!  *
!  * YOU ASSUME THE ENTIRE RISK AS TO THE PERFORMANCE OF SOFTWARE AND/OR 
!  * ASSOCIATED MATERIALS, AND TO THE PERFORMANCE AND VALIDITY OF 
!  * INFORMATION GENERATED USING SOFTWARE. By using Agilla you agree to 
!  * indemnify, defend, and hold harmless WU, its employees, officers and 
!  * agents from any and all claims, costs, or liabilities, including 
!  * attorneys fees and court costs at both the trial and appellate levels 
!  * for any loss, damage, or injury caused by your actions or actions of 
!  * your officers, servants, agents or third parties acting on behalf or 
!  * under authorization from you, as a result of using Agilla. 
!  *
!  * See the GNU Lesser General Public License for more details, which can 
!  * be found here: http://www.gnu.org/copyleft/lesser.html
!  */
! 
! includes AM;
! includes Agilla;
! includes MigrationMsgs;
! 
! /**
!  * A dummy AgentReceiver component.
!  *
!  * @author Chien-Liang Fok
!  * @version 1.3
!  */
! module AgentReceiverDummy{
!   provides {
!     interface StdControl;
!     interface AgentReceiverI;    
!   }
! }
! implementation {
!   command result_t StdControl.init() {
!     return SUCCESS;
!   }
! 
!   command result_t StdControl.start() {
!     return SUCCESS;
!   }
! 
!   command result_t StdControl.stop() {
!     return SUCCESS;
!   }
! 
!   /**
!    * This event is signalled whenever an agent arrives.
!    *
!    * @param context The context of the received agent.
!    * @param dest The destination address of the agent.
!    */
!   default event void AgentReceiverI.receivedAgent(AgillaAgentContext* context, 
!     uint16_t dest)
!   {
!   }
! }
--- 1,78 ----
! // $Id$
! 
! /* Agilla - A middleware for wireless sensor networks.
!  * Copyright (C) 2004, Washington University in Saint Louis 
!  * By Chien-Liang Fok.
!  * 
!  * Washington University states that Agilla is free software; 
!  * you can redistribute it and/or modify it under the terms of 
!  * the current version of the GNU Lesser General Public License 
!  * as published by the Free Software Foundation.
!  * 
!  * Agilla is distributed in the hope that it will be useful, but 
!  * THERE ARE NO WARRANTIES, WHETHER ORAL OR WRITTEN, EXPRESS OR 
!  * IMPLIED, INCLUDING BUT NOT LIMITED TO, IMPLIED WARRANTIES OF 
!  * MERCHANTABILITY OR FITNESS FOR A PARTICULAR USE.
!  *
!  * YOU UNDERSTAND THAT AGILLA IS PROVIDED "AS IS" FOR WHICH NO 
!  * WARRANTIES AS TO CAPABILITIES OR ACCURACY ARE MADE. THERE ARE NO 
!  * WARRANTIES AND NO REPRESENTATION THAT AGILLA IS FREE OF 
!  * INFRINGEMENT OF THIRD PARTY PATENT, COPYRIGHT, OR OTHER 
!  * PROPRIETARY RIGHTS.  THERE ARE NO WARRANTIES THAT SOFTWARE IS 
!  * FREE FROM "BUGS", "VIRUSES", "TROJAN HORSES", "TRAP DOORS", "WORMS", 
!  * OR OTHER HARMFUL CODE.  
!  *
!  * YOU ASSUME THE ENTIRE RISK AS TO THE PERFORMANCE OF SOFTWARE AND/OR 
!  * ASSOCIATED MATERIALS, AND TO THE PERFORMANCE AND VALIDITY OF 
!  * INFORMATION GENERATED USING SOFTWARE. By using Agilla you agree to 
!  * indemnify, defend, and hold harmless WU, its employees, officers and 
!  * agents from any and all claims, costs, or liabilities, including 
!  * attorneys fees and court costs at both the trial and appellate levels 
!  * for any loss, damage, or injury caused by your actions or actions of 
!  * your officers, servants, agents or third parties acting on behalf or 
!  * under authorization from you, as a result of using Agilla. 
!  *
!  * See the GNU Lesser General Public License for more details, which can 
!  * be found here: http://www.gnu.org/copyleft/lesser.html
!  */
! 
! includes AM;
! includes Agilla;
! includes MigrationMsgs;
! 
! /**
!  * A dummy AgentReceiver component.
!  *
!  * @author Chien-Liang Fok
!  * @version 1.3
!  */
! module AgentReceiverDummy{
!   provides {
!     interface StdControl;
!     interface AgentReceiverI;    
!   }
! }
! implementation {
!   command result_t StdControl.init() {
!     return SUCCESS;
!   }
! 
!   command result_t StdControl.start() {
!     return SUCCESS;
!   }
! 
!   command result_t StdControl.stop() {
!     return SUCCESS;
!   }
! 
!   /**
!    * This event is signalled whenever an agent arrives.
!    *
!    * @param context The context of the received agent.
!    * @param dest The destination address of the agent.
!    */
!   default event void AgentReceiverI.receivedAgent(AgillaAgentContext* context, 
!     uint16_t dest)
!   {
!   }
! }











More information about the Tinyos-contrib-commits mailing list