diff options
author | Sergey Dmitrouk <sdmitrouk@accesssoftek.com> | 2014-12-08 14:50:21 +0000 |
---|---|---|
committer | Sergey Dmitrouk <sdmitrouk@accesssoftek.com> | 2014-12-08 14:50:21 +0000 |
commit | 4cc3a2d82ce051b8ed2dcc43ab67026638fcac40 (patch) | |
tree | f63420062bb69c9a473c38e3e0bf06ba241a406d /libcxx/include/mutex | |
parent | 64bc246f3feb7eb672ba53860c0c1a98c29f0e48 (diff) | |
download | bcm5719-llvm-4cc3a2d82ce051b8ed2dcc43ab67026638fcac40.tar.gz bcm5719-llvm-4cc3a2d82ce051b8ed2dcc43ab67026638fcac40.zip |
Explicitly include <sched.h> for sched_yield()
It might be implicitly included by <pthread.h> (and that's why it worked
so far), but it's not guaranteed (for example, this is not the case with
newlib).
llvm-svn: 223661
Diffstat (limited to 'libcxx/include/mutex')
-rw-r--r-- | libcxx/include/mutex | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libcxx/include/mutex b/libcxx/include/mutex index 9c26356590d..e2a0daa3eab 100644 --- a/libcxx/include/mutex +++ b/libcxx/include/mutex @@ -178,6 +178,7 @@ template<class Callable, class ...Args> #ifndef _LIBCPP_HAS_NO_VARIADICS #include <tuple> #endif +#include <sched.h> #include <__undef_min_max> |