removed no longer used cooja/contiki synchronization variables

This commit is contained in:
fros4943 2010-03-09 08:14:31 +00:00
parent 0cc96ae481
commit 48d6d1fd6d
2 changed files with 3 additions and 7 deletions

View File

@ -26,7 +26,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* 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"
@ -38,8 +38,6 @@
extern const struct simInterface *simInterfaces[];
char simDontFallAsleep = 0;
char simNoYield = 0;
char simDoReceiverCallback = 0;
int simProcessRunValue;
int simEtimerPending;

View File

@ -26,7 +26,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* 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__
@ -34,7 +34,7 @@
#include "contiki.h"
// Simulation interface structure
/* Simulation interface structure */
struct simInterface {
void (* doActionsBeforeTick) (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
extern char simDontFallAsleep;
extern char simNoYield;
extern char simDoReceiverCallback;
// Definition for registering an interface
#define SIM_INTERFACE(name, doActionsBeforeTick, doActionsAfterTick) \