repo.or.cz
/
linux
/
fpc-iii.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
rcu: Make non-preemptive schedule be Tasks RCU quiescent state
[linux/fpc-iii.git]
/
tools
/
build
/
tests
/
ex
/
ex.c
blob
57de6074d252857fdbaf4c115a25c254b3bd2a94
1
2
int
a
(
void
);
3
int
b
(
void
);
4
int
c
(
void
);
5
int
d
(
void
);
6
int
e
(
void
);
7
int
f
(
void
);
8
int
inc
(
void
);
9
10
int
main
(
void
)
11
{
12
a
();
13
b
();
14
c
();
15
d
();
16
e
();
17
f
();
18
inc
();
19
20
return
0
;
21
}