projects
/
akaros.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Add signal support to our basic thread0 scheduler
[akaros.git]
/
scripts
/
spatch
/
route.cocci
1
@@
2
identifier route;
3
@@
4
route
5
- ->ifcid
6
+->routeTree.ifcid
7
8
@@
9
identifier route;
10
@@
11
route
12
- ->tag
13
+->routeTree.tag
14
15
@@
16
identifier route;
17
@@
18
route
19
- ->ipifc
20
+->routeTree.ipifc
21
22
@@
23
identifier route;
24
@@
25
route
26
- ->type
27
+->routeTree.type
28
29
@@
30
identifier route;
31
@@
32
route
33
- ->ifc
34
+->routeTree.ifc
35
36
@@
37
identifier route;
38
@@
39
route
40
- ->left
41
+->routeTree.left
42
43
@@
44
identifier route;
45
@@
46
route
47
- ->right
48
+->routeTree.right
49
50
@@
51
identifier route;
52
@@
53
route
54
- ->mid
55
+->routeTree.mid
56
57
@@
58
identifier route;
59
@@
60
route
61
- ->depth
62
+->routeTree.depth
63
64
@@
65
identifier route;
66
@@
67
route
68
- ->ref
69
+->routeTree.ref
70
71
@@
72
typedef RouteTree;
73
@@
74
-RouteTree
75
+struct routeTree
76
77
@@
78
typedef V4route;
79
@@
80
-V4route
81
+struct V4route
82
83
@@
84
typedef V6route;
85
@@
86
-V6route
87
+struct V6route
88
89
90