diff options
| author | 2015-05-03 22:26:22 +0000 | |
|---|---|---|
| committer | 2015-05-03 22:26:23 +0000 | |
| commit | 8a30bf23bcb1ad8d4ed9060ddbb27edbfd57a897 (patch) | |
| tree | 0b4093afe3f71d89b22f6ba927ad05946fb33910 /runtime/gc/task_processor.h | |
| parent | 25dcb2594a21a565ef82faa66a79bcf595c3a780 (diff) | |
| parent | 3130cdf29eb203be0c38d1107a65d920ec39c106 (diff) | |
Merge "Add some more DISALLOW_COPY_AND_ASSIGN"
Diffstat (limited to 'runtime/gc/task_processor.h')
| -rw-r--r-- | runtime/gc/task_processor.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/runtime/gc/task_processor.h b/runtime/gc/task_processor.h index 67e3a549a9..5f486192f0 100644 --- a/runtime/gc/task_processor.h +++ b/runtime/gc/task_processor.h @@ -46,6 +46,7 @@ class HeapTask : public SelfDeletingTask { uint64_t target_run_time_; friend class TaskProcessor; + DISALLOW_IMPLICIT_CONSTRUCTORS(HeapTask); }; // Used to process GC tasks (heap trim, heap transitions, concurrent GC). @@ -78,6 +79,8 @@ class TaskProcessor { std::unique_ptr<ConditionVariable> cond_ GUARDED_BY(lock_); std::multiset<HeapTask*, CompareByTargetRunTime> tasks_ GUARDED_BY(lock_); Thread* running_thread_ GUARDED_BY(lock_); + + DISALLOW_COPY_AND_ASSIGN(TaskProcessor); }; } // namespace gc |