OLD | NEW |
1 // Copyright 2009 the V8 project authors. All rights reserved. | 1 // Copyright 2009 the V8 project 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 "src/v8.h" | 5 #include "src/v8.h" |
6 | 6 |
7 #include "src/log-utils.h" | 7 #include "src/log-utils.h" |
8 #include "src/string-stream.h" | 8 #include "src/string-stream.h" |
9 #include "src/version.h" | 9 #include "src/version.h" |
10 | 10 |
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
233 if (pos_ == Log::kMessageBufferSize) pos_--; | 233 if (pos_ == Log::kMessageBufferSize) pos_--; |
234 log_->message_buffer_[pos_++] = '\n'; | 234 log_->message_buffer_[pos_++] = '\n'; |
235 const int written = log_->WriteToFile(log_->message_buffer_, pos_); | 235 const int written = log_->WriteToFile(log_->message_buffer_, pos_); |
236 if (written != pos_) { | 236 if (written != pos_) { |
237 log_->stop(); | 237 log_->stop(); |
238 log_->logger_->LogFailure(); | 238 log_->logger_->LogFailure(); |
239 } | 239 } |
240 } | 240 } |
241 | 241 |
242 | 242 |
243 } } // namespace v8::internal | 243 } // namespace internal |
| 244 } // namespace v8 |
OLD | NEW |