[Lldb-commits] [lldb] r190698 - test: Update FreeBSD failure decorators

2013-09-13 Thread Ed Maste
Author: emaste Date: Fri Sep 13 10:34:59 2013 New Revision: 190698 URL: http://llvm.org/viewvc/llvm-project?rev=190698view=rev Log: test: Update FreeBSD failure decorators llvm.org/pr15261 missing size for static arrays llvm.org/pr15278 expressions generating signals llvm.org/pr15824 thread

[Lldb-commits] [lldb] r190727 - This fixes two issues with the POSIX dynamic loader:

2013-09-13 Thread Matt Kopec
Author: mkopec Date: Fri Sep 13 17:14:50 2013 New Revision: 190727 URL: http://llvm.org/viewvc/llvm-project?rev=190727view=rev Log: This fixes two issues with the POSIX dynamic loader: 1. existing breakpoints weren't being re-resolved after the sections of a library were loaded (ie. through

[Lldb-commits] [PATCH] Improve stability of ProcessMonitor -- use a thread-safe queue instead of file descriptors with unchecked read/write calls to transfer Operation* between threads.

2013-09-13 Thread Daniel Malea
This commit simplifies the Linux ProcessMonitor: - DoOperation() and ServeOperation() no longer depend on file descriptors! - remove EnableIPC() helper. ProcessMonitor will not have to run as a separate process. - added a semaphore to signal when an operation is complete (previously signaling

[Lldb-commits] [lldb] r190734 - This changes how the --source driver argument works. I split this into four arguments:

2013-09-13 Thread Jim Ingham
Author: jingham Date: Fri Sep 13 19:20:24 2013 New Revision: 190734 URL: http://llvm.org/viewvc/llvm-project?rev=190734view=rev Log: This changes how the --source driver argument works. I split this into four arguments: -S : Specifies a command file which will get sourced after the ~/.lldbinit

[Lldb-commits] [lldb] r190742 - One bit of that last commit wasn't meant to be included.

2013-09-13 Thread Jason Molenda
Author: jmolenda Date: Sat Sep 14 00:22:33 2013 New Revision: 190742 URL: http://llvm.org/viewvc/llvm-project?rev=190742view=rev Log: One bit of that last commit wasn't meant to be included. Modified: lldb/trunk/source/Plugins/Process/mach-core/ProcessMachCore.cpp Modified: