DISABLE_IRQSAVE/ENABLE_IRQRESTORE: Convert to IRQ_SAVE_DISABLE/IRQ_RESTORE.
[bertos.git] / kern / msg.h
index dbd73e839664c52a68af840c150126be2435623d..b808602ac132ef2d9cd187e40f4a7525634d35da 100755 (executable)
@@ -18,6 +18,9 @@
 
 /*#*
  *#* $Log$
+ *#* Revision 1.5  2004/11/28 23:20:25  bernie
+ *#* Remove obsolete INITLIST macro.
+ *#*
  *#* Revision 1.4  2004/10/19 08:22:09  bernie
  *#* msg_peek(): New function.
  *#*
@@ -56,7 +59,7 @@ typedef struct Msg
 /*! Initialize a message port */
 INLINE void msg_initPort(MsgPort* port, Event event)
 {
-       INITLIST(&port->queue);
+       LIST_INIT(&port->queue);
        port->evn = event;
 }