diff --git a/core/net/uip-fw-drv.c b/core/net/uip-fw-drv.c index 4074016c8..0163fd571 100644 --- a/core/net/uip-fw-drv.c +++ b/core/net/uip-fw-drv.c @@ -30,7 +30,7 @@ * * Author: Adam Dunkels * - * $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" @@ -42,8 +42,6 @@ PROCESS_THREAD(uip_fw_process, ev, data) { PROCESS_BEGIN(); - PROCESS_SET_FLAGS(PROCESS_NO_BROADCAST); - tcpip_set_outputfunc(uip_fw_output); PROCESS_WAIT_UNTIL(ev == PROCESS_EVENT_EXIT); diff --git a/core/sys/process.h b/core/sys/process.h index 186c9f759..cc99a4d89 100644 --- a/core/sys/process.h +++ b/core/sys/process.h @@ -28,7 +28,7 @@ * * 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 CCIF extern struct process *process_current; -#define PROCESS_SET_FLAGS(flags) -#define PROCESS_NO_BROADCAST - /** * Switch context to another process *