| Commit message (Expand) | Author | Age | Files | Lines |
* | Launch processes asynchronously so as not to block the UI thread. For now, re... | jam@chromium.org | 2009-11-18 | 1 | -4/+2 |
* | Mac: Implement about:memory. | viettrungluu@chromium.org | 2009-11-05 | 1 | -9/+49 |
* | Move console stack dumping code to a function so it can be reused in test_she... | maruel@chromium.org | 2009-10-27 | 1 | -58/+86 |
* | Cleanup: change PIDs to base::ProcessId (or pid_t, as appropriate). | viettrungluu@chromium.org | 2009-10-20 | 1 | -2/+2 |
* | Eliminate all uses of strerror() in code that uses src/base. strerror() is in... | tschmelcher@chromium.org | 2009-10-13 | 1 | -3/+2 |
* | linux: implement GetCPUUsage() so the task manager shows CPU | evan@chromium.org | 2009-09-19 | 1 | -5/+9 |
* | posix: trivial error message cleanup | evan@chromium.org | 2009-09-12 | 1 | -1/+1 |
* | posix: better launchapp error message | evan@chromium.org | 2009-09-09 | 1 | -2/+2 |
* | When forking, restore the default exception handler port. | mark@chromium.org | 2009-09-03 | 1 | -0/+8 |
* | Port some of the base module to FreeBSD. Extracted from | wtc@chromium.org | 2009-08-31 | 1 | -1/+4 |
* | Revert r23911, which switched from fork to vfork(). | deanm@chromium.org | 2009-08-21 | 1 | -28/+22 |
* | Switch to using vfork() instead of fork() when we can. | deanm@chromium.org | 2009-08-20 | 1 | -22/+28 |
* | Remove the Mac-specific implementation of LaunchApp, and share the Linux vers... | stuartmorgan@google.com | 2009-08-06 | 1 | -0/+76 |
* | Linux: Use _exit() instead of exit() in the child after fork() in failure con... | mdm@chromium.org | 2009-07-23 | 1 | -0/+5 |
* | Linux/Mac: Use _exit() instead of exit() in the child after fork() in failure... | mdm@chromium.org | 2009-07-22 | 1 | -3/+3 |
* | Fix KillProcess so it doesn't report everything as a failure. | stuartmorgan@chromium.org | 2009-07-13 | 1 | -4/+11 |
* | Fix tools/valgrind/chrome_tests.sh to always use --log-file option | dank@chromium.org | 2009-07-07 | 1 | -0/+6 |
* | Consistently use int64 for integers holding number of milliseconds. | phajdan.jr@chromium.org | 2009-06-17 | 1 | -6/+6 |
* | POSIX: read subprocess output before waiting for termination. | agl@chromium.org | 2009-06-10 | 1 | -8/+7 |
* | CloseSuperfluousFiles shouldn't close the directory it's reading from | dkegel@google.com | 2009-06-07 | 1 | -0/+3 |
* | Fixes a bug where we were inadvertently closing Valgrind-owned FDs | rohitrao@chromium.org | 2009-05-06 | 1 | -23/+30 |
* | POSIX: Add a macro for handling EINTR. | agl@chromium.org | 2009-05-01 | 1 | -25/+15 |
* | POSIX: Add code for shuffling file descriptors. | agl@chromium.org | 2009-04-30 | 1 | -13/+84 |
* | Make task_manager_resource_providers.cc compile on POSIX. | phajdan.jr@chromium.org | 2009-04-30 | 1 | -0/+6 |
* | POSIX: don't spawn zombies. | agl@chromium.org | 2009-04-28 | 1 | -10/+23 |
* | Revert r14620 which was a rollback of r14549 and r14508. This | tc@google.com | 2009-04-27 | 1 | -2/+7 |
* | Speculatively roll back r14549 and r14508. The chrome browser | tc@google.com | 2009-04-27 | 1 | -7/+2 |
* | Port unload_uitest.cc and enable some of the tests on linux. | estade@chromium.org | 2009-04-24 | 1 | -2/+7 |
* | Revert "POSIX: Don't spawn zombies." (r14488) | agl@chromium.org | 2009-04-24 | 1 | -14/+3 |
* | POSIX: Don't spawn zombies. | agl@chromium.org | 2009-04-24 | 1 | -3/+14 |
* | Get rid of variable length arrays. | willchan@chromium.org | 2009-04-24 | 1 | -2/+2 |
* | More solid detection of browser process in chrome_process_util_linux.cc: | phajdan.jr@chromium.org | 2009-04-21 | 1 | -2/+8 |
* | Add GetAppOutput function, a better replacement for popen. | phajdan.jr@chromium.org | 2009-04-17 | 1 | -0/+68 |
* | Make OpenProcessHandle report an error when it couldn't open the handle. | phajdan.jr@chromium.org | 2009-04-03 | 1 | -2/+3 |
* | Use portable typedef for PIDs (process IDs). | phajdan.jr@chromium.org | 2009-04-01 | 1 | -3/+3 |
* | Removed unneeded includes of base/scoped_ptr.h. Reduce usage from ~800 files ... | thestig@chromium.org | 2009-03-13 | 1 | -0/+1 |
* | Make CrashAwareSleep more accurate on POSIX (checking if the process exists). | phajdan.jr@chromium.org | 2009-03-06 | 1 | -8/+20 |
* | Make startup_tests build and run on Linux (except reference tests). | phajdan.jr@chromium.org | 2009-03-05 | 1 | -1/+1 |
* | Make UITest::CrashAwareSleep portable. | phajdan.jr@chromium.org | 2009-03-04 | 1 | -4/+20 |
* | Fix the windows implementation of KillProcess and WaitForSingleProcess to not... | stoyan@chromium.org | 2009-02-09 | 1 | -1/+1 |
* | Make ResourceMessageFilter compile on Mac. It stubs out a substantial part of | brettw@google.com | 2009-02-06 | 1 | -0/+11 |
* | Implement NamedProcessIterator in base/process_util_mac.mm. Patch by Naoki | mark@chromium.org | 2009-02-05 | 1 | -0/+57 |
* | Add routine to close file descriptors on exec | jeremy@chromium.org | 2009-01-29 | 1 | -14/+43 |
* | Revert r8560 due to broken interactive_ui_tests | mark@chromium.org | 2009-01-23 | 1 | -4/+0 |
* | Porting in chrome/ | phajdan.jr@chromium.org | 2009-01-23 | 1 | -0/+4 |
* | Share DidProcessCrash between Linux and Mac. | deanm@chromium.org | 2009-01-21 | 1 | -0/+25 |
* | Port crash_cache tool to Linux. | phajdan.jr@chromium.org | 2009-01-13 | 1 | -0/+20 |
* | Move KillProcess from linux to posix so it can be used on the Mac. | dkegel@google.com | 2009-01-05 | 1 | -0/+25 |
* | * On POSIX, make sure we don't leak FDs when launching child Processes. | jeremy@chromium.org | 2008-12-17 | 1 | -0/+18 |
* | Reverting 7156. | ojan@google.com | 2008-12-17 | 1 | -18/+0 |