| OLD | NEW |
| 1 // Copyright 2009 the V8 project authors. All rights reserved. | 1 // Copyright 2009 the V8 project authors. All rights reserved. |
| 2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
| 3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
| 4 // met: | 4 // met: |
| 5 // | 5 // |
| 6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
| 7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
| 8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
| 9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
| 10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 | 27 |
| 28 #include "v8.h" | 28 #include "v8.h" |
| 29 | 29 |
| 30 #include "log-utils.h" | 30 #include "log-utils.h" |
| 31 #include "string-stream.h" | 31 #include "string-stream.h" |
| 32 | 32 |
| 33 namespace v8 { | 33 namespace v8 { |
| 34 namespace internal { | 34 namespace internal { |
| 35 | 35 |
| 36 | 36 |
| 37 const char* Log::kLogToTemporaryFile = "&"; | 37 const char* const Log::kLogToTemporaryFile = "&"; |
| 38 | 38 |
| 39 | 39 |
| 40 Log::Log(Logger* logger) | 40 Log::Log(Logger* logger) |
| 41 : is_stopped_(false), | 41 : is_stopped_(false), |
| 42 output_handle_(NULL), | 42 output_handle_(NULL), |
| 43 ll_output_handle_(NULL), | 43 ll_output_handle_(NULL), |
| 44 mutex_(NULL), | 44 mutex_(NULL), |
| 45 message_buffer_(NULL), | 45 message_buffer_(NULL), |
| 46 logger_(logger) { | 46 logger_(logger) { |
| 47 } | 47 } |
| (...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 301 ASSERT(pos_ <= Log::kMessageBufferSize); | 301 ASSERT(pos_ <= Log::kMessageBufferSize); |
| 302 const int written = log_->WriteToFile(log_->message_buffer_, pos_); | 302 const int written = log_->WriteToFile(log_->message_buffer_, pos_); |
| 303 if (written != pos_) { | 303 if (written != pos_) { |
| 304 log_->stop(); | 304 log_->stop(); |
| 305 log_->logger_->LogFailure(); | 305 log_->logger_->LogFailure(); |
| 306 } | 306 } |
| 307 } | 307 } |
| 308 | 308 |
| 309 | 309 |
| 310 } } // namespace v8::internal | 310 } } // namespace v8::internal |
| OLD | NEW |