removed no longer used cooja/contiki synchronization variables
This commit is contained in:
parent
0cc96ae481
commit
48d6d1fd6d
2 changed files with 3 additions and 7 deletions
|
@ -26,7 +26,7 @@
|
||||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||||
* SUCH DAMAGE.
|
* SUCH DAMAGE.
|
||||||
*
|
*
|
||||||
* $Id: simEnvChange.c,v 1.8 2009/05/26 14:08:51 fros4943 Exp $
|
* $Id: simEnvChange.c,v 1.9 2010/03/09 08:14:31 fros4943 Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "lib/simEnvChange.h"
|
#include "lib/simEnvChange.h"
|
||||||
|
@ -38,8 +38,6 @@
|
||||||
extern const struct simInterface *simInterfaces[];
|
extern const struct simInterface *simInterfaces[];
|
||||||
|
|
||||||
char simDontFallAsleep = 0;
|
char simDontFallAsleep = 0;
|
||||||
char simNoYield = 0;
|
|
||||||
char simDoReceiverCallback = 0;
|
|
||||||
|
|
||||||
int simProcessRunValue;
|
int simProcessRunValue;
|
||||||
int simEtimerPending;
|
int simEtimerPending;
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||||
* SUCH DAMAGE.
|
* SUCH DAMAGE.
|
||||||
*
|
*
|
||||||
* $Id: simEnvChange.h,v 1.8 2009/05/26 14:08:51 fros4943 Exp $
|
* $Id: simEnvChange.h,v 1.9 2010/03/09 08:14:31 fros4943 Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef __SIMENVCHANGE_H__
|
#ifndef __SIMENVCHANGE_H__
|
||||||
|
@ -34,7 +34,7 @@
|
||||||
|
|
||||||
#include "contiki.h"
|
#include "contiki.h"
|
||||||
|
|
||||||
// Simulation interface structure
|
/* Simulation interface structure */
|
||||||
struct simInterface {
|
struct simInterface {
|
||||||
void (* doActionsBeforeTick) (void);
|
void (* doActionsBeforeTick) (void);
|
||||||
void (* doActionsAfterTick) (void);
|
void (* doActionsAfterTick) (void);
|
||||||
|
@ -48,8 +48,6 @@ extern clock_time_t simCurrentTime;
|
||||||
|
|
||||||
// Variable that when set to != 0, stops the mote from falling asleep next tick
|
// Variable that when set to != 0, stops the mote from falling asleep next tick
|
||||||
extern char simDontFallAsleep;
|
extern char simDontFallAsleep;
|
||||||
extern char simNoYield;
|
|
||||||
extern char simDoReceiverCallback;
|
|
||||||
|
|
||||||
// Definition for registering an interface
|
// Definition for registering an interface
|
||||||
#define SIM_INTERFACE(name, doActionsBeforeTick, doActionsAfterTick) \
|
#define SIM_INTERFACE(name, doActionsBeforeTick, doActionsAfterTick) \
|
||||||
|
|
Loading…
Reference in a new issue