forked from contiki-os/contiki
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Moved ctimer.[ch] from their old and illogical location in core/net/r…
…ime to a more appropriate place in core/sys
- Loading branch information
adamdunkels
committed
Jun 14, 2010
1 parent
f81ca85
commit 8f8393a
Showing
19 changed files
with
41 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,7 +30,7 @@ | |
* | ||
* Author: Adam Dunkels <[email protected]> | ||
* | ||
* $Id: contiki.h,v 1.5 2008/07/03 23:36:30 adamdunkels Exp $ | ||
* $Id: contiki.h,v 1.6 2010/06/14 07:34:36 adamdunkels Exp $ | ||
*/ | ||
#ifndef __CONTIKI_H__ | ||
#define __CONTIKI_H__ | ||
|
@@ -42,6 +42,7 @@ | |
#include "sys/autostart.h" | ||
|
||
#include "sys/timer.h" | ||
#include "sys/ctimer.h" | ||
#include "sys/etimer.h" | ||
#include "sys/rtimer.h" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,7 +32,7 @@ | |
* | ||
* This file is part of the Contiki operating system. | ||
* | ||
* $Id: packetqueue.c,v 1.2 2010/02/28 09:20:32 adamdunkels Exp $ | ||
* $Id: packetqueue.c,v 1.3 2010/06/14 07:34:37 adamdunkels Exp $ | ||
*/ | ||
|
||
/** | ||
|
@@ -42,7 +42,7 @@ | |
* Adam Dunkels <[email protected]> | ||
*/ | ||
|
||
#include "net/rime/ctimer.h" | ||
#include "sys/ctimer.h" | ||
#include "net/rime/packetqueue.h" | ||
|
||
/*---------------------------------------------------------------------------*/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,7 +33,7 @@ | |
* | ||
* This file is part of the Contiki operating system. | ||
* | ||
* $Id: ctimer.c,v 1.8 2010/04/09 16:21:07 nvt-se Exp $ | ||
* $Id: ctimer.c,v 1.1 2010/06/14 07:34:36 adamdunkels Exp $ | ||
*/ | ||
|
||
/** | ||
|
@@ -43,10 +43,9 @@ | |
* Adam Dunkels <[email protected]> | ||
*/ | ||
|
||
#include "net/rime/ctimer.h" | ||
#include "sys/ctimer.h" | ||
#include "contiki.h" | ||
#include "lib/list.h" | ||
#include "net/rime.h" | ||
|
||
LIST(ctimer_list); | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters