repo.or.cz
/
pfinal.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
initial commit
[pfinal.git]
/
Routix
/
include
/
routix
/
event.h
blob
e8056a3085bfac953d156fd9abb6ee2a35e19e56
1
/* event.h */
2
3
4
#include
"task.h"
5
#include
"device.h"
6
7
8
typedef
struct
event_t
{
9
device_t dispositivo
;
10
task_struct_t
*
proceso
;
11
struct
event_t
*
proximo
;
12
}
event_t
;