diff options
author | Max Kellermann <max@duempel.org> | 2014-02-18 09:36:24 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-02-18 09:54:35 +0100 |
commit | 9b7f492c65ca1bcc034f81ae30eab05177bf322f (patch) | |
tree | cfbddd529eacf2df4240100da7882e72f6442126 /src/thread | |
parent | 6eda79d02d3f73d79ecd78cf18aba053973a9652 (diff) | |
download | mpd-9b7f492c65ca1bcc034f81ae30eab05177bf322f.tar.gz mpd-9b7f492c65ca1bcc034f81ae30eab05177bf322f.tar.xz mpd-9b7f492c65ca1bcc034f81ae30eab05177bf322f.zip |
thread/Posix{Mutex,Cond}: disable "constexpr" on Android
Bionic's pthread declarations are non-literal.
Diffstat (limited to '')
-rw-r--r-- | src/thread/PosixCond.hxx | 5 | ||||
-rw-r--r-- | src/thread/PosixMutex.hxx | 5 |
2 files changed, 8 insertions, 2 deletions
diff --git a/src/thread/PosixCond.hxx b/src/thread/PosixCond.hxx index 6f98d3ad0..35aa8c88a 100644 --- a/src/thread/PosixCond.hxx +++ b/src/thread/PosixCond.hxx @@ -41,7 +41,10 @@ class PosixCond { pthread_cond_t cond; public: - constexpr PosixCond():cond(PTHREAD_COND_INITIALIZER) {} +#ifndef __BIONIC__ + constexpr +#endif + PosixCond():cond(PTHREAD_COND_INITIALIZER) {} PosixCond(const PosixCond &other) = delete; PosixCond &operator=(const PosixCond &other) = delete; diff --git a/src/thread/PosixMutex.hxx b/src/thread/PosixMutex.hxx index d50764af4..464ed5787 100644 --- a/src/thread/PosixMutex.hxx +++ b/src/thread/PosixMutex.hxx @@ -41,7 +41,10 @@ class PosixMutex { pthread_mutex_t mutex; public: - constexpr PosixMutex():mutex(PTHREAD_MUTEX_INITIALIZER) {} +#ifndef __BIONIC__ + constexpr +#endif + PosixMutex():mutex(PTHREAD_MUTEX_INITIALIZER) {} PosixMutex(const PosixMutex &other) = delete; PosixMutex &operator=(const PosixMutex &other) = delete; |