| Index: runtime/bin/thread.h
|
| diff --git a/runtime/bin/thread.h b/runtime/bin/thread.h
|
| index 365cd952d9ac9fba7704cd0d65b76645714be2f7..e33e7f2e10b6900398eccf830e8055b13b3ebbba 100644
|
| --- a/runtime/bin/thread.h
|
| +++ b/runtime/bin/thread.h
|
| @@ -38,7 +38,7 @@ class Thread {
|
| static const ThreadLocalKey kUnsetThreadLocalKey;
|
| static const ThreadId kInvalidThreadId;
|
|
|
| - typedef void (*ThreadStartFunction) (uword parameter);
|
| + typedef void (*ThreadStartFunction)(uword parameter);
|
|
|
| // Start a thread running the specified function. Returns 0 if the
|
| // thread started successfuly and a system specific error code if
|
| @@ -83,10 +83,7 @@ class Mutex {
|
|
|
| class Monitor {
|
| public:
|
| - enum WaitResult {
|
| - kNotified,
|
| - kTimedOut
|
| - };
|
| + enum WaitResult { kNotified, kTimedOut };
|
|
|
| static const int64_t kNoTimeout = 0;
|
|
|
|
|