| Index: runtime/bin/process.h
|
| diff --git a/runtime/bin/process.h b/runtime/bin/process.h
|
| index c0d8b8b7472bc4d818b6f758995e977bee5e82a6..8e82f394aa7d8eac25b69d262f1cb36937508708 100644
|
| --- a/runtime/bin/process.h
|
| +++ b/runtime/bin/process.h
|
| @@ -38,12 +38,12 @@ class Process {
|
| static void TerminateExitCodeHandler();
|
|
|
| static int GlobalExitCode() {
|
| - MutexLocker ml(&global_exit_code_mutex_);
|
| + MutexLocker ml(global_exit_code_mutex_);
|
| return global_exit_code_;
|
| }
|
|
|
| static void SetGlobalExitCode(int exit_code) {
|
| - MutexLocker ml(&global_exit_code_mutex_);
|
| + MutexLocker ml(global_exit_code_mutex_);
|
| global_exit_code_ = exit_code;
|
| }
|
|
|
| @@ -56,7 +56,7 @@ class Process {
|
|
|
| private:
|
| static int global_exit_code_;
|
| - static dart::Mutex global_exit_code_mutex_;
|
| + static dart::Mutex* global_exit_code_mutex_;
|
|
|
| DISALLOW_ALLOCATION();
|
| DISALLOW_IMPLICIT_CONSTRUCTORS(Process);
|
|
|