Chromium Code Reviews| Index: base/process_util_linux.cc |
| diff --git a/base/process_util_linux.cc b/base/process_util_linux.cc |
| index 1f71f4dc080ccf629ddc04bb3bdd03e1ecf42c52..a265b9b713659b06ffa469d3cbcb70e9b47e6e36 100644 |
| --- a/base/process_util_linux.cc |
| +++ b/base/process_util_linux.cc |
| @@ -718,6 +718,10 @@ int posix_memalign(void** ptr, size_t alignment, size_t size) { |
| #endif // !defined(USE_TCMALLOC) |
| } // extern C |
| +void EnableTerminationOnHeapCorruption() { |
| + // On POSIX, there nothing to do AFAIK. |
|
Mark Mentovai
2011/08/17 16:44:55
This comment should now say Linux, not POSIX.
|
| +} |
| + |
| void EnableTerminationOnOutOfMemory() { |
| #if defined(OS_ANDROID) |
| // Android doesn't support setting a new handler. |