[Tinyos-2-commits] CVS: tinyos-2.x/apps/tests/TestScheduler README.txt, 1.1.2.1, 1.1.2.2 TestSchedulerAppC.nc, 1.1.2.3, 1.1.2.4 TestSchedulerC.nc, 1.1.2.2, 1.1.2.3

Kevin Klues klueska at users.sourceforge.net
Thu Jun 15 05:04:32 PDT 2006


Update of /cvsroot/tinyos/tinyos-2.x/apps/tests/TestScheduler
In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv28598/apps/tests/TestScheduler

Modified Files:
      Tag: tinyos-2_0_devel-BRANCH
	README.txt TestSchedulerAppC.nc TestSchedulerC.nc 
Log Message:
Updates to documentation to make everything show up properly in nesdoc

Index: README.txt
===================================================================
RCS file: /cvsroot/tinyos/tinyos-2.x/apps/tests/TestScheduler/Attic/README.txt,v
retrieving revision 1.1.2.1
retrieving revision 1.1.2.2
diff -C2 -d -r1.1.2.1 -r1.1.2.2
*** README.txt	3 Feb 2006 19:35:27 -0000	1.1.2.1
--- README.txt	15 Jun 2006 12:04:30 -0000	1.1.2.2
***************
*** 1,2 ****
--- 1,9 ----
+ $Id$
+ 
+ README for Null
+ Author/Contact: tinyos-help at millennium.berkeley.edu
+ 
+ Description:
+ 
  TestScheduler is a simple test application for a Scheduler's implementation
  of the TaskBasic interface. The application has three tasks, each of
***************
*** 6,10 ****
  to be a basic sanity test for schedulers.
  
! Author:  tinyos-help at millenium.berkeley.edu
  
  
--- 13,23 ----
  to be a basic sanity test for schedulers.
  
! Tools:
! 
! None.
! 
! Known bugs/limitations:
! 
! None
  
  

Index: TestSchedulerAppC.nc
===================================================================
RCS file: /cvsroot/tinyos/tinyos-2.x/apps/tests/TestScheduler/Attic/TestSchedulerAppC.nc,v
retrieving revision 1.1.2.3
retrieving revision 1.1.2.4
diff -C2 -d -r1.1.2.3 -r1.1.2.4
*** TestSchedulerAppC.nc	4 Feb 2006 01:10:33 -0000	1.1.2.3
--- TestSchedulerAppC.nc	15 Jun 2006 12:04:30 -0000	1.1.2.4
***************
*** 1,5 ****
  // $Id$
  
! /*									tab:4
   * "Copyright (c) 2000-2005 The Regents of the University  of California.  
   * All rights reserved.
--- 1,5 ----
  // $Id$
  
! /*	
   * "Copyright (c) 2000-2005 The Regents of the University  of California.  
   * All rights reserved.
***************
*** 34,41 ****
   * intensive tasks of different durations. It is not intended to be
   * of great use to TinyOS programmers; rather, it is a sanity check
!  * for schedulers.
   *
   * @author Philip Levis
   * @date Aug 10 2005
   */
  
--- 34,43 ----
   * intensive tasks of different durations. It is not intended to be
   * of great use to TinyOS programmers; rather, it is a sanity check
!  * for schedulers. For details and information on how to
!  * replace the scheduler, refer to TEP 106.
   *
   * @author Philip Levis
   * @date Aug 10 2005
+  * @see TEP 106: Tasks and Schedulers
   */
  

Index: TestSchedulerC.nc
===================================================================
RCS file: /cvsroot/tinyos/tinyos-2.x/apps/tests/TestScheduler/Attic/TestSchedulerC.nc,v
retrieving revision 1.1.2.2
retrieving revision 1.1.2.3
diff -C2 -d -r1.1.2.2 -r1.1.2.3
*** TestSchedulerC.nc	16 Feb 2006 16:48:12 -0000	1.1.2.2
--- TestSchedulerC.nc	15 Jun 2006 12:04:30 -0000	1.1.2.3
***************
*** 1,6 ****
  // $Id$
  
! /*									tab:4
!  * "Copyright (c) 2000-2005 The Regents of the University  of California.  
   * All rights reserved.
   *
--- 1,6 ----
  // $Id$
  
! /*
!  * "Copyright (c) 2000-2005 The Regents of the University  of California.
   * All rights reserved.
   *
***************
*** 9,18 ****
   * 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
--- 9,18 ----
   * 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
***************
*** 24,37 ****
   * All rights reserved.
   *
!  * This file is distributed under the terms in the attached INTEL-LICENSE     
   * file. If you do not find these files, copies can be found by writing to
!  * Intel Research Berkeley, 2150 Shattuck Avenue, Suite 1300, Berkeley, CA, 
   * 94704.  Attention:  Intel License Inquiry.
   */
  
  /**
!  * Implementation for Blink application.  Toggle the red LED when a
!  * Timer fires.
!  **/
  
  #include "Timer.h"
--- 24,44 ----
   * All rights reserved.
   *
!  * This file is distributed under the terms in the attached INTEL-LICENSE
   * file. If you do not find these files, copies can be found by writing to
!  * Intel Research Berkeley, 2150 Shattuck Avenue, Suite 1300, Berkeley, CA,
   * 94704.  Attention:  Intel License Inquiry.
   */
  
  /**
!  * TestScheduler is a simple scheduler test that posts three CPU
!  * intensive tasks of different durations. It is not intended to be
!  * of great use to TinyOS programmers; rather, it is a sanity check
!  * for schedulers. For details and information on how to
!  * replace the scheduler, refer to TEP 106.
!  *
!  * @author Philip Levis
!  * @date Aug 10 2005
!  * @see TEP 106: Tasks and Schedulers
!  */
  
  #include "Timer.h"



More information about the Tinyos-2-commits mailing list