| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 1 #ifndef NDEBUG | 5 #ifndef NDEBUG |
| 2 | 6 |
| 3 #include "debug.h" | 7 #include "debug.h" |
| 4 | 8 |
| 5 namespace playground { | 9 namespace playground { |
| 6 | 10 |
| 7 bool Debug::enabled_; | 11 bool Debug::enabled_; |
| 8 int Debug::numSyscallNames_; | 12 int Debug::numSyscallNames_; |
| 9 const char **Debug::syscallNames_; | 13 const char **Debug::syscallNames_; |
| 10 std::map<int, std::string> Debug::syscallNamesMap_; | 14 std::map<int, std::string> Debug::syscallNamesMap_; |
| (...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 216 *s-- = *start; | 220 *s-- = *start; |
| 217 *start++ = ch; | 221 *start++ = ch; |
| 218 } | 222 } |
| 219 | 223 |
| 220 return ret; | 224 return ret; |
| 221 } | 225 } |
| 222 | 226 |
| 223 } // namespace | 227 } // namespace |
| 224 | 228 |
| 225 #endif // NDEBUG | 229 #endif // NDEBUG |
| OLD | NEW |