The Week Of Monday 8 July 2013 Archives by thread
Starting: Mon Jul 8 02:27:37 PDT 2013
Ending: Sun Jul 14 20:25:21 PDT 2013
Messages: 71
- [Lldb-commits] MinGW compilation support
Virgile Bello
- [Lldb-commits] [lldb] r185560 - Revert commits that cause broken builds on GCC buildbots
Enrico Granata
- [Lldb-commits] [lldb] r185845 - Use target DisplaySource if available so we can get mixed source and assembly.
Michael Sartain
- [Lldb-commits] [lldb] r185877 - Added a way to extract the module specifications from a file. A module specification is information that is required to describe a module (executable, shared library, object file, ect). This information includes host path, platform path (remote path), symbol file path, UUID, object name (for objects in .a files for example you could have an object name of "foo.o"), and target triple. Module specification can be used to create a module, or used to add a module to a target. A list of modul...
Greg Clayton
- [Lldb-commits] [lldb] r185878 - Added missing SBModuleSpec.cpp file to the CMakeLists.txt
Greg Clayton
- [Lldb-commits] [lldb] r185889 - Add TestConcurrentEvents test for LLDB's handling of inferior threads
Daniel Malea
- [Lldb-commits] [lldb] r185891 - Update exception to match decorator name
Ed Maste
- [Lldb-commits] [lldb] r185903 - Add new information gathering to the lldb & simple backtrace methods:
Jason Molenda
- [Lldb-commits] [lldb] r185906 - Add the frame content dumper function call to one more place.
Jason Molenda
- [Lldb-commits] [lldb] r185944 - Fix signal handling for POSIX (only tested on Linux) processes in multi-threaded programs.
Matt Kopec
- [Lldb-commits] [lldb] r185946 - Use shared pointers to hold the process in ProcessMonitor
Andrew Kaylor
- [Lldb-commits] [lldb] r185947 - Change TestRegisters.py attach case to attach to a.out and enable that test case
Andrew Kaylor
- [Lldb-commits] [lldb] r185951 - Cleanup in TestConcurrentEvents.py
Daniel Malea
- [Lldb-commits] [lldb] r185965 - Second attempt at getting the PyCallable changes in trunk
Enrico Granata
- [Lldb-commits] Patch for review: add silent option to command source
Matthew Sorrels
- [Lldb-commits] [lldb] r185981 - Reverting ProcessMonitor shared pointer changes
Andrew Kaylor
- [Lldb-commits] [lldb] r185983 - Add silent option to command source.
Michael Sartain
- [Lldb-commits] [lldb] r185988 - Fixed the CommunicationKDP::SendRequestAndGetReply() to correctly be able to deal with getting a reply from a previous packet without resending the packet again.
Greg Clayton
- [Lldb-commits] [lldb] r185990 - Cleanup on the unified section list changes. Main changes are:
Greg Clayton
- [Lldb-commits] [lldb] r185996 - Call xmlFree on the node contents returned by xmlNodeGetContent, as the docs say to do.
Jim Ingham
- [Lldb-commits] [lldb] r186020 - Fixed an issue introduced with my last fix where the command and sequence ID extraction were moved causing them to be reversed.
Greg Clayton
- [Lldb-commits] [lldb] r186023 - Adding a summary for ObjC blocks
Enrico Granata
- [Lldb-commits] Patch to add API to read ELF ProgramHeader/Segment
Samuel Jacob
- [Lldb-commits] [lldb] r186033 - Add support for listing inferior thread names on Linux.
Matt Kopec
- [Lldb-commits] [lldb] r186039 - Stop process monitor from ProcessPOSIX::Finalize
Andrew Kaylor
- [Lldb-commits] [lldb] r186086 - Add stub GetThreadName for FreeBSD, missed in r186033.
Ed Maste
- [Lldb-commits] [lldb] r186104 - Fix "source list -n printf" on Linux (printf is symbol alias for __printf)
Michael Sartain
- [Lldb-commits] [lldb] r186112 - Fix unhandled SIGTRAP signal on Linux causing assertion.
Matt Kopec
- [Lldb-commits] [lldb] r186114 - Adds methods to ObjectFileELF to access data in ELF segments
Ashok Thirumurthi
- [Lldb-commits] [lldb] r186122 - Tweaks to the Python reference and example command to use the preferred print style and the (finally available :-) SetError API
Enrico Granata
- [Lldb-commits] [lldb] r186124 - Improve TestConcurrentEvents.py
Daniel Malea
- [Lldb-commits] [lldb] r186126 - Enable Mac OS X tests disabled due to llvm.org/pr16567
Daniel Malea
- [Lldb-commits] [lldb] r186127 - Added a memory.py module that contains a 'memfind' command which allows you to search memory for a byte pattern.
Greg Clayton
- [Lldb-commits] [lldb] r186129 - Tentatively re-enabling TestBreakAfterJoin on Linux
Daniel Malea
- [Lldb-commits] [lldb] r186130 - Huge change to clean up types.
Greg Clayton
- [Lldb-commits] [lldb] r186132 - Get debugserver to call task_set_state to prime the control registers so that watchpoints
Jim Ingham
- [Lldb-commits] [lldb] r186133 - Unblock buildbot.
Greg Clayton
- [Lldb-commits] [lldb] r186160 - TypeHierarchyNavigator was removed in r186130
Ed Maste
- [Lldb-commits] [lldb] r186166 - Fix gcc buildbot failures, re-enable tests disabled due to llvm.org/pr16575
Daniel Malea
- [Lldb-commits] [lldb] r186168 - The correct max value for size_t variables is SIZE_MAX not UINT64_MAX. Removes lots of warnings when building on 32 bit hosts.
Jim Ingham
- [Lldb-commits] [lldb] r186190 - Handle BreakNotify for threads whose tid doesn't match the ThreadSpec of the BreakpointSite
Ashok Thirumurthi
- [Lldb-commits] [lldb] r186193 - Work-around for GCC issue where setting a breakpoint on a vector definition also adds a breakpoint on the d'tor call
Daniel Malea
- [Lldb-commits] [lldb] r186194 - Enabled the "--debug" option functionality that will SIGSTOP the current process allowing a debugger to attach.
Greg Clayton
- [Lldb-commits] [lldb] r186195 - Fix the linux gcc 4.6.3 buildbot failures that happened after my recent types checkin.
Greg Clayton
- [Lldb-commits] [lldb] r186201 - Adding information on the scriptable keywords ${target|process|thread|frame.script:function} to the LLDB documentation
Enrico Granata
- [Lldb-commits] [lldb] r186205 - Added Repr() and Str() member functions to our PythonObject class to allow easy conversion to-string of every PythonObject
Enrico Granata
- [Lldb-commits] [lldb] r186207 - Introduces core file support for Linux x86-64 using 'lldb a.out -c core'.
Ashok Thirumurthi
- [Lldb-commits] [lldb] r186211 - Fixed GetModuleSpecifications() to work better overall:
Greg Clayton
- [Lldb-commits] [lldb] r186221 - Missed a checking that should have been checked in with 186211.
Greg Clayton
- [Lldb-commits] [lldb] r186223 - Revert the ELF core file support until a few things can be worked out:
Greg Clayton
- [Lldb-commits] [lldb] r186228 - Modified the expression parser to only try to
Sean Callanan
- [Lldb-commits] [PATCH] Fix build on linux because of GetModuleSpecifications() signature change with 186211
Arnaud A. de Grandmaison
- [Lldb-commits] [lldb] r186299 - Commit Timothee Besset's patch to update Host/linux/Host.cpp to keep up
Jason Molenda
Last message date:
Sun Jul 14 20:25:21 PDT 2013
Archived on: Tue Aug 4 15:44:44 PDT 2015
This archive was generated by
Pipermail 0.09 (Mailman edition).