diff options
| author | 2017-06-06 14:40:50 +0000 | |
|---|---|---|
| committer | 2017-06-06 14:40:52 +0000 | |
| commit | 9aeefb2dc7eee5af417887e71caa781df23aecc8 (patch) | |
| tree | a503ec9d5c89dcfcc5f7c1caffb0c8ed0388fec3 | |
| parent | 444d0c5b59e79171e8f2c3e69e740bce47672da8 (diff) | |
| parent | 5544e721c3e2a3e344c26b9e1c9ad9472fb8cd58 (diff) | |
Merge "ART: Replace some '\n' with std::endl"
| -rw-r--r-- | runtime/base/histogram-inl.h | 2 | ||||
| -rw-r--r-- | runtime/thread_list.cc | 5 |
2 files changed, 3 insertions, 4 deletions
diff --git a/runtime/base/histogram-inl.h b/runtime/base/histogram-inl.h index b28eb729d8..be2092040d 100644 --- a/runtime/base/histogram-inl.h +++ b/runtime/base/histogram-inl.h @@ -198,7 +198,7 @@ inline void Histogram<Value>::PrintConfidenceIntervals(std::ostream &os, double kFractionalDigits) << "-" << FormatDuration(Percentile(per_1, data) * kAdjust, unit, kFractionalDigits) << " " << "Avg: " << FormatDuration(Mean() * kAdjust, unit, kFractionalDigits) << " Max: " - << FormatDuration(Max() * kAdjust, unit, kFractionalDigits) << "\n"; + << FormatDuration(Max() * kAdjust, unit, kFractionalDigits) << std::endl; } template <class Value> diff --git a/runtime/thread_list.cc b/runtime/thread_list.cc index 5094189dfc..95aba79ed7 100644 --- a/runtime/thread_list.cc +++ b/runtime/thread_list.cc @@ -165,7 +165,7 @@ static void DumpUnattachedThread(std::ostream& os, pid_t tid, bool dump_native_s if (dump_native_stack) { DumpNativeStack(os, tid, nullptr, " native: "); } - os << "\n"; + os << std::endl; } void ThreadList::DumpUnattachedThreads(std::ostream& os, bool dump_native_stack) { @@ -216,11 +216,10 @@ class DumpCheckpoint FINAL : public Closure { ScopedObjectAccess soa(self); thread->Dump(local_os, dump_native_stack_, backtrace_map_.get()); } - local_os << "\n"; { // Use the logging lock to ensure serialization when writing to the common ostream. MutexLock mu(self, *Locks::logging_lock_); - *os_ << local_os.str(); + *os_ << local_os.str() << std::endl; } barrier_.Pass(self); } |