OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "mojo/public/cpp/utility/mutex.h" | 5 #include "mojo/public/cpp/utility/mutex.h" |
6 | 6 |
7 #include <stdlib.h> // For |rand()|. | 7 #include <stdlib.h> // For |rand()|. |
8 #include <time.h> // For |nanosleep()| (defined by POSIX). | 8 #include <time.h> // For |nanosleep()| (defined by POSIX). |
9 | 9 |
10 #include <vector> | 10 #include <vector> |
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
253 // Destroy lock with lock held. | 253 // Destroy lock with lock held. |
254 EXPECT_DEATH({ | 254 EXPECT_DEATH({ |
255 Mutex mutex; | 255 Mutex mutex; |
256 mutex.Lock(); | 256 mutex.Lock(); |
257 }, ""); | 257 }, ""); |
258 } | 258 } |
259 #endif // !defined(NDEBUG) | 259 #endif // !defined(NDEBUG) |
260 | 260 |
261 } // namespace | 261 } // namespace |
262 } // namespace mojo | 262 } // namespace mojo |
OLD | NEW |