Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(64)

Side by Side Diff: src/log-utils.cc

Issue 7491052: Static state cleanup: add more consts. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 9 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/log-utils.h ('k') | src/mips/deoptimizer-mips.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « src/log-utils.h ('k') | src/mips/deoptimizer-mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698