Home | History | Annotate | Download | only in jni

Lines Matching refs:Mutex

24 class Mutex {
26 Mutex() {
35 ~Mutex() {
39 // A simple class that locks a given mutex on construction
43 Autolock(Mutex &mutex) : lock(&mutex) {
50 Mutex *lock;
57 Mutex(const Mutex&);
58 Mutex& operator=(const Mutex&);