/*
* $Log$
+ * Revision 1.5 2004/07/14 14:18:09 rasky
+ * Merge da SC: Rimosso timer dentro il task, che è uno spreco di memoria per troppi task
+ *
* Revision 1.4 2004/07/13 19:21:28 aleph
* Avoid warning for unused arg when compiled without some CONFIG_KERN_xx options
*
/* Avoid warning for unused argument */
(void)proc;
-#if CONFIG_KERN_TIMER
- event_initSignal(&proc->proc_timer.expire, proc, SIG_SINGLE);
-#endif
-
#if CONFIG_KERN_SIGNALS
proc->sig_recv = 0;
#endif
/*
* $Log$
+ * Revision 1.3 2004/07/14 14:18:09 rasky
+ * Merge da SC: Rimosso timer dentro il task, che è uno spreco di memoria per troppi task
+ *
* Revision 1.2 2004/06/03 11:27:09 bernie
* Add dual-license information.
*
#include "config.h"
#include "config_kern.h"
#include <mware/list.h>
-#include <drv/timer.h>
typedef struct Process
sigset_t sig_recv; /*!< Received signals */
#endif
-#if CONFIG_KERN_TIMER
- struct Timer proc_timer; /*!< Process own timer */
-#endif
-
#if CONFIG_KERN_HEAP
uint16_t flags; /*!< Flags */
cpustack_t *stack_base; /*!< Base of process stack */