summaryrefslogtreecommitdiffstats
path: root/runtime/base
diff options
context:
space:
mode:
authorMathieu Chartier <mathieuc@google.com>2013-11-12 17:03:02 -0800
committerMathieu Chartier <mathieuc@google.com>2013-11-12 17:03:02 -0800
commit46bc778f1feed02b20d25e3d03470c93ca2c0506 (patch)
treeac760c321039cd8a5e78ae766accf4dc3ddb194b /runtime/base
parent0b74e3acc2fd35d95ac55c4ee2ffe5c651229ed8 (diff)
downloadart-46bc778f1feed02b20d25e3d03470c93ca2c0506.zip
art-46bc778f1feed02b20d25e3d03470c93ca2c0506.tar.gz
art-46bc778f1feed02b20d25e3d03470c93ca2c0506.tar.bz2
Fix portable + mips build.
Change-Id: Ia200e582b04c84973281e12331777351feb8a401
Diffstat (limited to 'runtime/base')
-rw-r--r--runtime/base/mutex.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/runtime/base/mutex.h b/runtime/base/mutex.h
index a875017..feb8a6c 100644
--- a/runtime/base/mutex.h
+++ b/runtime/base/mutex.h
@@ -329,11 +329,6 @@ class ConditionVariable {
// TODO: remove this.
void WaitHoldingLocks(Thread* self) NO_THREAD_SAFETY_ANALYSIS;
- // Return the number of people that are waiting on this condition.
- int32_t GetNumWaiters() const NO_THREAD_SAFETY_ANALYSIS {
- return num_waiters_;
- }
-
private:
const char* const name_;
// The Mutex being used by waiters. It is an error to mix condition variables between different