| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium 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 #ifndef BASE_DEBUG_STACK_TRACE_H_ | 5 #ifndef BASE_DEBUG_STACK_TRACE_H_ |
| 6 #define BASE_DEBUG_STACK_TRACE_H_ | 6 #define BASE_DEBUG_STACK_TRACE_H_ |
| 7 | 7 |
| 8 #include <iosfwd> | 8 #include <iosfwd> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 // so set it to 62. Even if on POSIX it could be a larger value, it usually | 70 // so set it to 62. Even if on POSIX it could be a larger value, it usually |
| 71 // doesn't give much more information. | 71 // doesn't give much more information. |
| 72 static const int kMaxTraces = 62; | 72 static const int kMaxTraces = 62; |
| 73 | 73 |
| 74 void* trace_[kMaxTraces]; | 74 void* trace_[kMaxTraces]; |
| 75 | 75 |
| 76 // The number of valid frames in |trace_|. | 76 // The number of valid frames in |trace_|. |
| 77 size_t count_; | 77 size_t count_; |
| 78 }; | 78 }; |
| 79 | 79 |
| 80 namespace internal { | |
| 81 | |
| 82 #if defined(OS_POSIX) && !defined(OS_ANDROID) | |
| 83 // POSIX doesn't define any async-signal safe function for converting | |
| 84 // an integer to ASCII. We'll have to define our own version. | |
| 85 // itoa_r() converts a (signed) integer to ASCII. It returns "buf", if the | |
| 86 // conversion was successful or NULL otherwise. It never writes more than "sz" | |
| 87 // bytes. Output will be truncated as needed, and a NUL character is always | |
| 88 // appended. | |
| 89 BASE_EXPORT char *itoa_r(intptr_t i, | |
| 90 char *buf, | |
| 91 size_t sz, | |
| 92 int base, | |
| 93 size_t padding); | |
| 94 #endif // defined(OS_POSIX) && !defined(OS_ANDROID) | |
| 95 | |
| 96 } // namespace internal | |
| 97 | |
| 98 } // namespace debug | 80 } // namespace debug |
| 99 } // namespace base | 81 } // namespace base |
| 100 | 82 |
| 101 #endif // BASE_DEBUG_STACK_TRACE_H_ | 83 #endif // BASE_DEBUG_STACK_TRACE_H_ |
| OLD | NEW |