Updated for the new kernel API
diff --git a/contiki-avr/conf/ek-conf.h b/contiki-avr/conf/ek-conf.h
index 59a4752..93affa9 100644
--- a/contiki-avr/conf/ek-conf.h
+++ b/contiki-avr/conf/ek-conf.h
@@ -11,10 +11,7 @@
  *    copyright notice, this list of conditions and the following
  *    disclaimer in the documentation and/or other materials provided
  *    with the distribution. 
- * 3. All advertising materials mentioning features or use of this
- *    software must display the following acknowledgement:
- *        This product includes software developed by Adam Dunkels. 
- * 4. The name of the author may not be used to endorse or promote
+ * 3. The name of the author may not be used to endorse or promote
  *    products derived from this software without specific prior
  *    written permission.  
  *
@@ -30,9 +27,9 @@
  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.  
  *
- * This file is part of the "ek" event kernel.
+ * This file is part of the Contiki operating system.
  *
- * $Id: ek-conf.h,v 1.1 2003/07/04 10:54:52 adamdunkels Exp $
+ * $Id: ek-conf.h,v 1.2 2004/07/04 20:17:38 adamdunkels Exp $
  *
  */
 
@@ -44,7 +41,7 @@
 
 typedef void *ek_data_t;
 
-typedef unsigned char ek_signal_t;
+typedef unsigned char ek_event_t;
 typedef unsigned char ek_id_t;
 
 /* ek_ticks_t: should be defined to be the largest type that fits the
@@ -58,18 +55,11 @@
    used by the underlying system. (Look for time_t or similar.) */
 typedef unsigned long ek_clock_t; 
 
-#define EK_CONF_NUMSIGNALS   32    /* Must be 2^n */
-typedef unsigned char ek_num_signals_t;
+typedef unsigned char ek_num_events_t;
 
-#define EK_CONF_NUMTIMERS    4    /* Must be 2^n */
-typedef unsigned char ek_num_timers_t;
+#define EK_CONF_MAXPROCS 16
+#define EK_CONF_NUMEVENTS 16
 
-#define EK_CONF_NUMLISTENERS  32    /* Must be 2^n */
-typedef unsigned char ek_num_listeners_t;
-
-#define EK_CONF_UNLISTEN 0
-
-#define CLK_TCK 1000
 
 #ifndef NULL
 #define NULL (void *)0