00001 /* event.h */ 00002 00003 00004 #include "task.h" 00005 #include "device.h" 00006 00007 00008 typedef struct event_t { 00009 device_t dispositivo; 00010 task_struct_t *proceso; 00011 struct event_t *proximo; 00012 } event_t;