projects
/
urcu.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Fix warnings in urcutorture and use access once in urch.u
[urcu.git]
/
urcu-asm.c
1
#include
"urcu.h"
2
3
void
show_read_lock
(
void
)
4
{
5
asm
volatile
(
"/* start */"
);
6
rcu_read_lock
();
7
asm
volatile
(
"/* end */"
);
8
}
9
10
void
show_read_unlock
(
void
)
11
{
12
asm
volatile
(
"/* start */"
);
13
rcu_read_unlock
();
14
asm
volatile
(
"/* end */"
);
15
}
This page took
0.029568 seconds
and
4
git commands to generate.