Removed the empty PROCESS_NO_BROADCAST macro.

This commit is contained in:
oliverschmidt 2007-05-23 22:16:05 +00:00
parent 1629c207b5
commit 6275ef313c
2 changed files with 2 additions and 7 deletions

View File

@ -30,7 +30,7 @@
* *
* Author: Adam Dunkels <adam@sics.se> * Author: Adam Dunkels <adam@sics.se>
* *
* $Id: uip-fw-drv.c,v 1.3 2007/05/22 20:32:32 oliverschmidt Exp $ * $Id: uip-fw-drv.c,v 1.4 2007/05/23 22:17:08 oliverschmidt Exp $
*/ */
#include "net/uip-fw.h" #include "net/uip-fw.h"
@ -42,8 +42,6 @@ PROCESS_THREAD(uip_fw_process, ev, data)
{ {
PROCESS_BEGIN(); PROCESS_BEGIN();
PROCESS_SET_FLAGS(PROCESS_NO_BROADCAST);
tcpip_set_outputfunc(uip_fw_output); tcpip_set_outputfunc(uip_fw_output);
PROCESS_WAIT_UNTIL(ev == PROCESS_EVENT_EXIT); PROCESS_WAIT_UNTIL(ev == PROCESS_EVENT_EXIT);

View File

@ -28,7 +28,7 @@
* *
* This file is part of the Contiki operating system. * This file is part of the Contiki operating system.
* *
* @(#)$Id: process.h,v 1.7 2007/04/02 18:07:26 adamdunkels Exp $ * @(#)$Id: process.h,v 1.8 2007/05/23 22:16:05 oliverschmidt Exp $
*/ */
/** /**
@ -400,9 +400,6 @@ CCIF void process_exit(struct process *p);
#define PROCESS_CURRENT() process_current #define PROCESS_CURRENT() process_current
CCIF extern struct process *process_current; CCIF extern struct process *process_current;
#define PROCESS_SET_FLAGS(flags)
#define PROCESS_NO_BROADCAST
/** /**
* Switch context to another process * Switch context to another process
* *