[Tinyos-2-commits] CVS: tinyos-2.x/tos/system AMQueueEntryP.nc, 1.4, 1.5 AMQueueImplP.nc, 1.6, 1.7

Phil Levis scipio at users.sourceforge.net
Thu Sep 13 16:10:52 PDT 2007


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

Modified Files:
	AMQueueEntryP.nc AMQueueImplP.nc 
Log Message:
The big interface switchover for Packet, Send, Receive, and AMSend.


Index: AMQueueEntryP.nc
===================================================================
RCS file: /cvsroot/tinyos/tinyos-2.x/tos/system/AMQueueEntryP.nc,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** AMQueueEntryP.nc	12 Dec 2006 18:23:46 -0000	1.4
--- AMQueueEntryP.nc	13 Sep 2007 23:10:19 -0000	1.5
***************
*** 63,68 ****
    }
  
!   command void* AMSend.getPayload(message_t* m) {
!     return call Send.getPayload(m);
    }
    
--- 63,68 ----
    }
  
!   command void* AMSend.getPayload(message_t* m, uint8_t len) {
!     return call Send.getPayload(m, len);
    }
    

Index: AMQueueImplP.nc
===================================================================
RCS file: /cvsroot/tinyos/tinyos-2.x/tos/system/AMQueueImplP.nc,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** AMQueueImplP.nc	13 Apr 2007 17:31:15 -0000	1.6
--- AMQueueImplP.nc	13 Sep 2007 23:10:19 -0000	1.7
***************
*** 201,206 ****
      }
  
!     command void* Send.getPayload[uint8_t id](message_t* m) {
!         return call AMSend.getPayload[0](m);
      }
  
--- 201,206 ----
      }
  
!     command void* Send.getPayload[uint8_t id](message_t* m, uint8_t len) {
!       return call AMSend.getPayload[0](m, len);
      }
  



More information about the Tinyos-2-commits mailing list