projects
/
folly.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bd69c0f
)
folly::detail::futex should be inline
author
Philip Pronin
<philipp@fb.com>
Fri, 8 Jun 2012 08:37:24 +0000
(
01:37
-0700)
committer
Tudor Bosman
<tudorb@fb.com>
Fri, 8 Jun 2012 18:28:44 +0000
(11:28 -0700)
Summary: It breaks build.
Test Plan: will check *_try builds
Reviewed By: andrei.alexandrescu@fb.com
FB internal diff:
D489935
folly/experimental/EventCount.h
patch
|
blob
|
history
diff --git
a/folly/experimental/EventCount.h
b/folly/experimental/EventCount.h
index e03571d15506c1963cb3001d0967a94d73169130..df1486486f8f1a6676a8701c3eb19dd2d9bede09 100644
(file)
--- a/
folly/experimental/EventCount.h
+++ b/
folly/experimental/EventCount.h
@@
-29,8
+29,8
@@
namespace folly {
namespace detail {
-in
t futex(int* uaddr, int op, int val, const struc
t timespec* timeout,
- int* uaddr2, int val3) noexcept {
+in
line int futex(int* uaddr, int op, int val, cons
t timespec* timeout,
+
int* uaddr2, int val3) noexcept {
return syscall(SYS_futex, uaddr, op, val, timeout, uaddr2, val3);
}