[Tinyos-2-commits] CVS: tinyos-2.x/tos/system FcfsArbiterC.nc, 1.5, 1.6 RoundRobinArbiterC.nc, 1.5, 1.6

Kevin Klues klueska at users.sourceforge.net
Sun Apr 15 13:39:51 PDT 2007


Update of /cvsroot/tinyos/tinyos-2.x/tos/system
In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv4067

Modified Files:
	FcfsArbiterC.nc RoundRobinArbiterC.nc 
Log Message:
Update of documentation

Index: FcfsArbiterC.nc
===================================================================
RCS file: /cvsroot/tinyos/tinyos-2.x/tos/system/FcfsArbiterC.nc,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** FcfsArbiterC.nc	4 Feb 2007 19:56:40 -0000	1.5
--- FcfsArbiterC.nc	15 Apr 2007 20:39:48 -0000	1.6
***************
*** 61,66 ****
   * intended use.<br><br>
   *
!  * This component provides the Resource, ArbiterInfo, and Resource
!  * Controller interfaces and uses the ResourceConfigure interface as
   * described in TEP 108.  It provides arbitration to a shared resource in
   * an FCFS fashion.  An array is used to keep track of which users have put
--- 61,66 ----
   * intended use.<br><br>
   *
!  * This component provides the Resource, ArbiterInfo, and ResourceDefaultOwner
!  * interfaces and uses the ResourceConfigure interface as
   * described in TEP 108.  It provides arbitration to a shared resource in
   * an FCFS fashion.  An array is used to keep track of which users have put
***************
*** 68,74 ****
   * of these users, the array is checked and the next user (in FCFS order)
   * that has a pending request will ge granted control of the resource.  If
!  * there are no pending requests, then the resource becomes idle and any
!  * user can put in a request and immediately receive access to the
!  * Resource.
   *
   * @param <b>resourceName</b> -- The name of the Resource being shared
--- 68,74 ----
   * of these users, the array is checked and the next user (in FCFS order)
   * that has a pending request will ge granted control of the resource.  If
!  * there are no pending requests, then the resource is granted to the default 
!  * user.  If a new request is made, the default user will release the resource, 
!  * and it will be granted to the requesting cleint.
   *
   * @param <b>resourceName</b> -- The name of the Resource being shared

Index: RoundRobinArbiterC.nc
===================================================================
RCS file: /cvsroot/tinyos/tinyos-2.x/tos/system/RoundRobinArbiterC.nc,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** RoundRobinArbiterC.nc	4 Feb 2007 19:56:51 -0000	1.5
--- RoundRobinArbiterC.nc	15 Apr 2007 20:39:48 -0000	1.6
***************
*** 61,74 ****
   * intended use.<br><br>
   *
!  * This component provides the Resource, ArbiterInfo, and Resource
!  * Controller interfaces and uses the ResourceConfigure interface as
   * described in TEP 108.  It provides arbitration to a shared resource in
!  * an FCFS fashion.  An array is used to keep track of which users have put
!  * in requests for the resource.  Upon the release of the resource by one
!  * of these users, the array is checked and the next user (in FCFS order)
   * that has a pending request will ge granted control of the resource.  If
!  * there are no pending requests, then the resource becomes idle and any
!  * user can put in a request and immediately receive access to the
!  * Resource.
   *
   * @param <b>resourceName</b> -- The name of the Resource being shared
--- 61,74 ----
   * intended use.<br><br>
   *
!  * This component provides the Resource, ArbiterInfo, and ResourceDefaultOwner
!  * interfaces and uses the ResourceConfigure interface as
   * described in TEP 108.  It provides arbitration to a shared resource in
!  * a Round Robin fashion.  An array is used to keep track of which users have 
!  * put in requests for the resource.  Upon the release of the resource by one
!  * of these users, the array is checked and the next user (in Round Robin order)
   * that has a pending request will ge granted control of the resource.  If
!  * there are no pending requests, then the resource is granted to the default 
!  * user.  If a new request is made, the default user will release the resource, 
!  * and it will be granted to the requesting cleint.
   *
   * @param <b>resourceName</b> -- The name of the Resource being shared



More information about the Tinyos-2-commits mailing list