- 7880148 Linux: Try to minimize copying of string information when reading /proc data. by [email protected] · 14 years ago
- a42d463 Replace most LOG/CHECK statements with DLOG/DCHECK statements in base. by [email protected] · 14 years ago
- 2f4a8e1 Revert 107042 - Replace most LOG/CHECK statements with DLOG/DCHECK statements in base. by [email protected] · 14 years ago
- da7d86e Replace most LOG/CHECK statements with DLOG/DCHECK statements in base. by [email protected] · 14 years ago
- 03eb9d2 Trying again to land OOM priority manager changes. by [email protected] · 14 years ago
- 1dcae06 Revert 97724 - Changing OOM range to 0, 1000 and tweaking OOM algorithm. by [email protected] · 14 years ago
- 07444bb Changing OOM range to 0, 1000 and tweaking OOM algorithm. by [email protected] · 14 years ago
- 2558a4d9 [Mac] Implement base::EnableTerminationOnHeapCorruption() by overriding malloc_error_break(). by [email protected] · 14 years ago
- 6a294dba Revert "[Mac] Implement base::EnableTerminationOnHeapCorruption() by overriding malloc_error_break" by [email protected] · 14 years ago
- 1e1e5df [Mac] Implement base::EnableTerminationOnHeapCorruption() by overriding malloc_error_break(). by [email protected] · 14 years ago
- f37661dd CrOS - Memory debug widget shows anonymous memory and renderer kills. by [email protected] · 14 years ago
- 14cb2b2d CrOS - Add memory consumption status bar widget behind flag by [email protected] · 14 years ago
- ae9f26ca Revert 94999 - CrOS - Add memory consumption status bar widget behind flag by [email protected] · 14 years ago
- f31deb49 CrOS - Add memory consumption status bar widget behind flag by [email protected] · 14 years ago
- 1e93211 Upstream process and thread related code. by [email protected] · 14 years ago
- 4633282 Do not redefine malloc&co when ADDRESS_SANITIZER macro is defined. by [email protected] · 14 years ago
- 6782f83 iwyu: Include stringprintf.h where appropriate, part 1. by [email protected] · 14 years ago
- 1f094b3 Fix bug in ProcessIterator::CheckForNextProcess(). Under load it's by [email protected] · 15 years ago
- b7d0820 Properly order the cc files based off the h files in base/. by [email protected] · 15 years ago
- 34b9963 Move base/thread.h to base/threading, fix up callers to use the new location. by [email protected] · 15 years ago
- 4f260d0 Update file version info/memory details/process utils to use string16. by [email protected] · 15 years ago
- a425003 Linux: Allow IO in ProcessMetrics::GetWorkingSetKBytes(). by [email protected] · 15 years ago
- 723571a Start using file_util symlink code, now that it's available. by [email protected] · 15 years ago
- 6f38c6c process_util_linux: mark functions that use /proc as safe for disk IO by [email protected] · 15 years ago
- 76eb024 base: Move SplitString functions into the base namespace and update the callers. by [email protected] · 15 years ago
- c47d81d Clean up orphaned testserver processes before launching a new one in net::TestServer by [email protected] · 15 years ago
- 4e5ae20f base: Finish moving the SplitString functions from string_util.h to string_split.h by [email protected] · 15 years ago
- 528c56d Move the number conversions from string_util to a new file. by [email protected] · 15 years ago
- 3b6711ea 40% speed up in parsing the /proc/<pid>/smaps file by changing StringTokenizer. What used to take 10ms to parse now takes 6ms. by [email protected] · 15 years ago
- 98947a0 Speed up the Task Manager on linux. by [email protected] · 15 years ago
- 8e6b2c1c Replace CHECK(false) by LOG(FATAL) where appropriate. by [email protected] · 15 years ago
- b6128aa Move common code into process_util.cc. by [email protected] · 15 years ago
- 61a9b2d8 Merge the LINUX_TC_MALLOC #define with the existing TC_MALLOC #define. by [email protected] · 15 years ago
- 022eab6 Mac: UI tweaks for task manager. by [email protected] · 16 years ago
- 78711ce4 Linux: reenable malloc overrides. by [email protected] · 16 years ago
- 4c69100f Also disable tests for code removed in r35804. by [email protected] · 16 years ago
- fb0b70ed Linux: disable malloc tricks to unbreak Ubuntu build. by [email protected] · 16 years ago
- e5856a7a Linux: Adjust /proc/pid/oom_adj to sacrifice plugin and renderer processes to the OOM killer. by [email protected] · 16 years ago
- 3c4e3015 Enable TCMalloc on Linux by default. by [email protected] · 16 years ago
- 7dcd4d5 Make calloc return NULL while initializing. by [email protected] · 16 years ago
- 9be42c8 For Linux, override malloc and friends so that we can detect and then stop on out of memory. by [email protected] · 16 years ago
- 3b26381 linux: Remove NOTIMPL cluttering test output by [email protected] · 16 years ago
- 66d0a94 Log warnings, not errors, if we can't fetch memory status for by [email protected] · 16 years ago
- cccb2121 Ensure OOM is a killer on the Mac. by [email protected] · 16 years ago
- ed26d94 More memory stats code cleanup: by [email protected] · 16 years ago
- 7dcac98 Linux: use /proc/pid/statm to get memory stats when /proc/pid/smaps is unavailable. by [email protected] · 16 years ago
- 99e9d79 Make the memory resource functions return bools so that we know when the information is not available. Refactor TaskManager slightly. by [email protected] · 16 years ago
- 57b76567 Eliminate all uses of strerror() in code that uses src/base. strerror() is inherently unsafe in multi-threaded apps because it stores the string in a global buffer. It should never be used. If you want to log an error, use PLOG and friends, or if that's too high-level then use safe_strerror(). by [email protected] · 16 years ago
- 9bb48aa Linux: remove the concept of physical memory from the task manager. by [email protected] · 16 years ago
- d2ed2383 linux: implement GetCPUUsage() so the task manager shows CPU by [email protected] · 16 years ago
- 655750cb Remove code doing a no-op due to float -> int rounding. by [email protected] · 16 years ago
- 54fd1d3 Linux: about:memory by [email protected] · 16 years ago
- 5a3b914 Revert "Fix a ton of compiler warnings." by [email protected] · 16 years ago
- be952c3c Fix a ton of compiler warnings. by [email protected] · 16 years ago
- 2aea9e09 Remove the Mac-specific implementation of LaunchApp, and share the Linux version. by [email protected] · 16 years ago
- afa8247 Linux: Use _exit() instead of exit() in the child after fork() in failure conditions. by [email protected] · 16 years ago
- 1d775f6 This implements the functions necessary for the task manager on Linux. by [email protected] · 16 years ago
- 9ec8db0f Set GTK_PATH to CHROMIUM_SAVED_GTK_PATH before launching xdg-open. by [email protected] · 16 years ago
- cad4cdd Convert NOTIMPLs into a bug. by [email protected] · 16 years ago
- abe3ad9 Linux: Add support for chrooted renderers. by [email protected] · 16 years ago
- cc8f146 Linux: refactor zygote support by [email protected] · 16 years ago
- ac57749 Revert 18109, 18111: Windows UI tests failed. by [email protected] · 16 years ago
- 361e25c Linux: refactor zygote support by [email protected] · 16 years ago
- 78c6dd6 Enable zygote manager by default. by [email protected] · 16 years ago
- 4883a4e Prototype implementation of zygotes. by [email protected] · 16 years ago
- a25e36ec Revert r17575 and r17576. They are causing layout test errors. by [email protected] · 16 years ago
- 998e781 Linux: Add support for chrooted renderers. by [email protected] · 16 years ago
- 0da19221 Extract Windows-specific parts of TaskManager. by [email protected] · 16 years ago
- 0c557f1 Add memory stats for linux page cycler. On linux, we collect by [email protected] · 16 years ago
- 157c61b POSIX: Add a macro for handling EINTR. by [email protected] · 16 years ago
- 3f04f2b POSIX: Add code for shuffling file descriptors. by [email protected] · 16 years ago
- c145cbdd Get rid of variable length arrays. by [email protected] · 16 years ago
- d940627c Cleanup in LaunchApp: by [email protected] · 16 years ago
- d043c2cc Cleanup in chrome/browser by [email protected] · 16 years ago
- 7b38a2f Removed unneeded includes of base/time.h. by [email protected] · 16 years ago
- 962dd31 Implement NamedProcessIterator in base/process_util_mac.mm. Patch by Naoki by [email protected] · 17 years ago
- 05d4b0a Add routine to close file descriptors on exec for linux and mac. See BUG 6598. by [email protected] · 17 years ago
- 9c19aa1 Share DidProcessCrash between Linux and Mac. by [email protected] · 17 years ago
- 99c062e Clean up a bunch of style errors in process_util_linux.cc. by [email protected] · 17 years ago
- bb97536 Make CommandLine into a normal object, with some statics for getting at the current process's command line. by [email protected] · 17 years ago
- 8cf7cebd Move KillProcess from linux to posix so it can be used on the Mac. by [email protected] · 17 years ago
- fa3097a6a5 * On POSIX, make sure we don't leak FDs when launching child Processes. by [email protected] · 17 years ago
- c51e069 Reverting 7156. by [email protected] · 17 years ago
- 29ccac13 * On POSIX, make sure we don't leak FDs when launching child Processes. by [email protected] · 17 years ago
- 91a55b9 Improve sleep resolution in process_util_linux. by [email protected] · 17 years ago
- 43bc2832 * Add timeout support to POSIX WaitForSingleProcess() by [email protected] · 17 years ago
- 0d83c73 Implement GetCPUUsage; it was causing link errors because of its absence on the Mac, so we'll implement it for everyone. by [email protected] · 17 years ago
- 9963aaa More Mac & Linux fixes for base namespaces. by [email protected] · 17 years ago
- 176aa48 Add Terminate() to the Process object, have RenderProcessHost use this to avoid some more Windows specific code. by [email protected] · 17 years ago
- 8881d8794 Unfork test_shell_main_gtk back into test_shell_main. by [email protected] · 17 years ago
- 82fc7c7 Get url_request_unittest.cc to build on Linux. by [email protected] · 17 years ago
- ab0e222 Port GetProcessCount(), KillProcesses(), and CleanupProcesses(). by [email protected] · 17 years ago
- fb7f9be Added linux process utilities and tests. by [email protected] · 17 years ago
- 0b100bc8b Port parts of base/process_util to Linux. by [email protected] · 17 years ago