[Lldb-commits] [lldb] r220217 - Remove LLDB_DEFAULT_SHELL #define, and determine this at runtime.

2014-10-20 Thread Zachary Turner
Author: zturner Date: Mon Oct 20 12:46:43 2014 New Revision: 220217 URL: http://llvm.org/viewvc/llvm-project?rev=220217view=rev Log: Remove LLDB_DEFAULT_SHELL #define, and determine this at runtime. Differential Revision: http://reviews.llvm.org/D5805 Reviewed by: Greg Clayton Modified:

[Lldb-commits] [lldb] r220218 - Don't use mkstemp, as it doesn't exist on Windows.

2014-10-20 Thread Zachary Turner
Author: zturner Date: Mon Oct 20 12:46:56 2014 New Revision: 220218 URL: http://llvm.org/viewvc/llvm-project?rev=220218view=rev Log: Don't use mkstemp, as it doesn't exist on Windows. Differential Revision: http://reviews.llvm.org/D5849 Reviewed by: Jason Molenda Modified:

Re: [Lldb-commits] [PATCH] Don't use mkstemp, as it doesn't exist on Windows.

2014-10-20 Thread Zachary Turner
Closed by commit rL220218 (authored by @zturner). REPOSITORY rL LLVM http://reviews.llvm.org/D5849 Files: lldb/trunk/source/Expression/ClangExpressionParser.cpp Index: lldb/trunk/source/Expression/ClangExpressionParser.cpp ===

Re: [Lldb-commits] [PATCH] Delete LLDB_DEFAULT_SHELL, and determine the default shell at runtime

2014-10-20 Thread Zachary Turner
Closed by commit rL220217 (authored by @zturner). REPOSITORY rL LLVM http://reviews.llvm.org/D5805 Files: lldb/trunk/include/lldb/Host/Host.h lldb/trunk/include/lldb/Host/posix/HostInfoPosix.h lldb/trunk/include/lldb/Host/windows/HostInfoWindows.h

Re: [Lldb-commits] [PATCH] Minimal API support for non-8-bit byte targets

2014-10-20 Thread jingham
On Oct 20, 2014, at 6:09 AM, Matthew Gardiner m...@csr.com wrote: Hi clayborg, emaste, In order to write applications with the lldb C++ API which support non-8-bit bytes targets, it is necessary to extend the API somewhat. To use lldb's ReadMemory interface, which accepts a buffer

[Lldb-commits] [lldb] r220219 - Skip dsym test on !Darwin

2014-10-20 Thread Ed Maste
Author: emaste Date: Mon Oct 20 13:12:46 2014 New Revision: 220219 URL: http://llvm.org/viewvc/llvm-project?rev=220219view=rev Log: Skip dsym test on !Darwin r219978 fixed this test to work on Darwin, and removed the expected failure decorator, but it then started running (and failing) on

Re: [Lldb-commits] [PATCH] Add an OperatingSystem plugin to support goroutines

2014-10-20 Thread jingham
Greg should comment on way you're populating the Memory threads, etc. That was his code (used mostly by the OS X kernel folks to turn kernel thread activations into lldb threads...) At present you can only enable/disable the OS plugins when the target is created, but I haven't looked into how

Re: [Lldb-commits] [PATCH] Add an OperatingSystem plugin to support goroutines

2014-10-20 Thread Jim Ingham
Greg should comment on way you're populating the Memory threads, etc. That was his code (used mostly by the OS X kernel folks to turn kernel thread activations into lldb threads...) At present you can only enable/disable the OS plugins when the target is created, but I haven't looked into how