Fixed build error introduced by test upgrade without code upgrade.

Change-Id: If0dc93c9013ccd1898fb1ec7eb34b355772d6b82
diff --git a/aos/common/mutex.h b/aos/common/mutex.h
index ff953e4..251eb3c 100644
--- a/aos/common/mutex.h
+++ b/aos/common/mutex.h
@@ -28,7 +28,8 @@
   ~Mutex();
 #endif
   // Locks the mutex. If it fails, it calls LOG(FATAL).
-  void Lock();
+  // Returns false.
+  bool Lock();
   // Unlocks the mutex. Fails like Lock.
   // Multiple unlocking is undefined.
   void Unlock();