[Tinyos-commits] CVS: tinyos-1.x/tos/lib/Deluge/TOSBoot/lib ExecC.nc, NONE, 1.1

Joe Polastre jpolastre at users.sourceforge.net
Mon Sep 19 14:29:31 PDT 2005


Update of /cvsroot/tinyos/tinyos-1.x/tos/lib/Deluge/TOSBoot/lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28436/lib

Added Files:
	ExecC.nc 
Log Message:
new platform-independent ExecC from the brilliant mind of Cory Sharp
Replaces the ExecC that used to be in telos/ and telosb/
probably will work for atmel and any other platform too, but hasn't
been tested


--- NEW FILE: ExecC.nc ---
// $Id: ExecC.nc,v 1.1 2005/09/19 21:29:29 jpolastre Exp $

/*									tab:2
 * "Copyright (c) 2000-2005 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."
 */

/*
 * @author Jonathan Hui <jwhui at cs.berkeley.edu>
 */

module ExecC {
  provides {
    interface Exec;
  }
}

implementation {

  command void Exec.exec() {

    //goto *(void*)(TOSBOOT_END);

    typedef void __attribute__((noreturn)) (*tosboot_exec)();
    ((tosboot_exec)TOSBOOT_END)();

  }

}



More information about the Tinyos-commits mailing list