initial commit
[pfinal.git] / Routix / include / routix / event.h
blobe8056a3085bfac953d156fd9abb6ee2a35e19e56
1 /* event.h */
4 #include "task.h"
5 #include "device.h"
8 typedef struct event_t {
9 device_t dispositivo;
10 task_struct_t *proceso;
11 struct event_t *proximo;
12 } event_t;