| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Modified LLDB expressions to not have to JIT and run code just to see variable | Greg Clayton | 2010-12-14 | 1 | -19/+12 |
* | Added the ability to dump sections to a certain depth (for when sections | Greg Clayton | 2010-12-08 | 1 | -6/+11 |
* | Make sure that STDOUT and STDERR events in lldb_private::Process carry along | Greg Clayton | 2010-12-05 | 1 | -1/+1 |
* | More reverting of the EOF stuff as the API was changed which we don't want to | Greg Clayton | 2010-12-04 | 1 | -1/+1 |
* | Added the ability to display the new "target.process.inherit-env" setting. | Greg Clayton | 2010-12-04 | 1 | -0/+7 |
* | Added the ability for a process to inherit the current host environment. This | Greg Clayton | 2010-12-04 | 1 | -15/+84 |
* | Add '-no-stdio' option to 'process launch' command, which causes the | Caroline Tice | 2010-12-03 | 1 | -4/+25 |
* | Fixed a typo in comment. | Johnny Chen | 2010-12-02 | 1 | -1/+1 |
* | Add proper EOF handling to Communication & Connection classes: | Caroline Tice | 2010-12-02 | 1 | -1/+1 |
* | Moved the code in ClangUserExpression that set up & ran the thread plan with ... | Jim Ingham | 2010-11-30 | 1 | -3/+284 |
* | Add the ability to catch and do the right thing with Interrupts (often contro... | Caroline Tice | 2010-11-19 | 1 | -5/+9 |
* | Fixed an issue where the UserSettingsControllers were being created out of | Greg Clayton | 2010-11-19 | 1 | -5/+6 |
* | Cleaned up code that wasn't using the Initialize and Terminate paradigm by | Greg Clayton | 2010-11-18 | 1 | -17/+20 |
* | Fixed Process::Halt() as it was broken for "process halt" after recent changes | Greg Clayton | 2010-11-18 | 1 | -13/+74 |
* | Added an "Interrupted" bit to the ProcessEventData. Halt now generates an event | Jim Ingham | 2010-11-17 | 1 | -36/+53 |
* | Make processes use InputReaders for their input. Move the process | Caroline Tice | 2010-11-16 | 1 | -1/+125 |
* | Add ThreadPlanTracer class to allow instruction step tracing of execution. | Jim Ingham | 2010-11-11 | 1 | -1/+1 |
* | Modified all logging calls to hand out shared pointers to make sure we | Greg Clayton | 2010-11-06 | 1 | -16/+16 |
* | Added the equivalent of gdb's "unwind-on-signal" to the expression command, a... | Jim Ingham | 2010-11-05 | 1 | -4/+4 |
* | Added support for loading and unloading shared libraries. This was done by | Greg Clayton | 2010-11-04 | 1 | -0/+136 |
* | Cleaned up the API logging a lot more to reduce redundant information and | Greg Clayton | 2010-10-31 | 1 | -1/+6 |
* | Add the ability to disable individual log categories, rather | Caroline Tice | 2010-10-29 | 1 | -0/+4 |
* | Don't cache the public stop reason, since it can change as plan completion ge... | Jim Ingham | 2010-10-20 | 1 | -3/+3 |
* | Stop the driver from handling SIGPIPE in case we communicate with stale | Greg Clayton | 2010-10-19 | 1 | -6/+6 |
* | Still trying to get detach to work with debugserver. Got a bit closer, | Greg Clayton | 2010-10-18 | 1 | -2/+3 |
* | Fixed debugserver to properly attach to a process by name with the | Greg Clayton | 2010-10-18 | 1 | -1/+7 |
* | Added support for breakpoint conditions. I also had to separate the "run the... | Jim Ingham | 2010-10-14 | 1 | -2/+2 |
* | Fix a regression introduced in r116430 with the added 'break' statement, | Johnny Chen | 2010-10-14 | 1 | -1/+1 |
* | Add new argument type, eArgSignalName, | Caroline Tice | 2010-10-13 | 1 | -0/+1 |
* | Add a way to temporarily divert events from a broadcaster to a private listener. | Jim Ingham | 2010-10-11 | 1 | -0/+17 |
* | Cleaned up the SWIG stuff so all includes happen as they should, no pulling | Greg Clayton | 2010-10-07 | 1 | -1/+10 |
* | There are now to new "settings set" variables that live in each debugger | Greg Clayton | 2010-10-04 | 1 | -1/+1 |
* | Replace the vestigial Value::GetOpaqueCLangQualType with the more correct Val... | Jim Ingham | 2010-09-28 | 1 | -7/+0 |
* | Create more useful instance names for target, process and thread instances. | Caroline Tice | 2010-09-27 | 1 | -0/+16 |
* | Committing the skeleton of Language runtime plugin classes. | Jim Ingham | 2010-09-23 | 1 | -0/+38 |
* | Make GetInstanceSettingsValue methods take an Error * rather than an Error &, | Caroline Tice | 2010-09-20 | 1 | -3/+8 |
* | Add UserSettings to Target class, making Target settings | Caroline Tice | 2010-09-20 | 1 | -3/+4 |
* | Added code that will allow completely customizable prompts for use in | Greg Clayton | 2010-09-19 | 1 | -30/+11 |
* | Fix issues with CreateInstanceName, a virtual function, being called | Caroline Tice | 2010-09-16 | 1 | -1/+8 |
* | Moved the section load list up into the target so we can use the target | Greg Clayton | 2010-09-14 | 1 | -99/+1 |
* | Fixed an issue that was always causing an extra empty argument to be sent | Greg Clayton | 2010-09-14 | 1 | -4/+2 |
* | Add comments to InstanceSettings constructors explaining why they have | Caroline Tice | 2010-09-09 | 1 | -3/+7 |
* | Move the ProcessPlugins enum definition from lldb-enumerations.h to | Caroline Tice | 2010-09-09 | 1 | -3/+3 |
* | Make sure creating a pending instance doesn't also trigger creating a live in... | Caroline Tice | 2010-09-08 | 1 | -6/+9 |
* | Move common code from GetSettingsController in Process & Debugger into static... | Jim Ingham | 2010-09-07 | 1 | -15/+5 |
* | Fix various minor bugs in the Settings stuff. | Caroline Tice | 2010-09-07 | 1 | -2/+2 |
* | This is a very large commit that completely re-does the way lldb | Caroline Tice | 2010-09-04 | 1 | -0/+343 |
* | Added the ability to disable ASLR (Address Space Layout Randomization). ASLR | Greg Clayton | 2010-08-31 | 1 | -0/+2 |
* | Fixed a long delay in shutdown times by invalidating m_private_state_thread r... | Greg Clayton | 2010-08-19 | 1 | -0/+1 |
* | Don't try to get the architecture up front when doing attach -w. | Jim Ingham | 2010-08-17 | 1 | -5/+8 |