[Lldb-commits] [lldb] r202376 - update the declaration from llvm::OwningPtr to llvm::IntrusiveRefCntPtr to match the clang update (r202346) on ASTContext

2014-02-27 Thread Sylvestre Ledru
Author: sylvestre Date: Thu Feb 27 04:46:57 2014 New Revision: 202376 URL: http://llvm.org/viewvc/llvm-project?rev=202376view=rev Log: update the declaration from llvm::OwningPtr to llvm::IntrusiveRefCntPtr to match the clang update (r202346) on ASTContext Modified:

Re: [Lldb-commits] [lldb] r202311 - A better long term fix for stopping the process when it is running by writing to the pipe that was used for cancel.

2014-02-27 Thread Greg Clayton
On Feb 26, 2014, at 5:20 PM, Ed Maste ema...@freebsd.org wrote: On 26 February 2014 17:47, Greg Clayton gclay...@apple.com wrote: Author: gclayton Date: Wed Feb 26 16:47:33 2014 New Revision: 202311 URL: http://llvm.org/viewvc/llvm-project?rev=202311view=rev Log: A better long term fix

Re: [Lldb-commits] [PATCH] Fixes for 32-bit linux ptrace and RegisterContext issues

2014-02-27 Thread Greg Clayton
One question: is source/Plugins/Process/Linux/ProcessMonitor.cpp only compiled natively on systems that can use it? If so, the the pid_t argument will probably work. Otherwise, you might want to change it to use a explicitly sized int type (int32_t?). I worry that using

[Lldb-commits] [lldb] r202423 - Improve logging a bit by printing the exception or signal type description.

2014-02-27 Thread Greg Clayton
Author: gclayton Date: Thu Feb 27 13:35:12 2014 New Revision: 202423 URL: http://llvm.org/viewvc/llvm-project?rev=202423view=rev Log: Improve logging a bit by printing the exception or signal type description. Modified: lldb/trunk/source/Target/ThreadPlanBase.cpp Modified:

[Lldb-commits] [lldb] r202424 - Remove an assertion that was being hit due to slow DNS name lookups on MacOSX for localhost.

2014-02-27 Thread Greg Clayton
Author: gclayton Date: Thu Feb 27 13:38:18 2014 New Revision: 202424 URL: http://llvm.org/viewvc/llvm-project?rev=202424view=rev Log: Remove an assertion that was being hit due to slow DNS name lookups on MacOSX for localhost. Changed all localhost to 127.0.0.1 to prevent potentially long name

[Lldb-commits] [lldb] r202426 - Check call to fgetc for EINTR.

2014-02-27 Thread Jim Ingham
Author: jingham Date: Thu Feb 27 13:48:13 2014 New Revision: 202426 URL: http://llvm.org/viewvc/llvm-project?rev=202426view=rev Log: Check call to fgetc for EINTR. rdar://problem/16140277 Modified: lldb/trunk/source/Host/common/Editline.cpp Modified:

[Lldb-commits] [lldb] r202440 - remove useless declarations found thanks to scan-build

2014-02-27 Thread Sylvestre Ledru
Author: sylvestre Date: Thu Feb 27 16:46:23 2014 New Revision: 202440 URL: http://llvm.org/viewvc/llvm-project?rev=202440view=rev Log: remove useless declarations found thanks to scan-build Modified: lldb/trunk/source/Breakpoint/BreakpointLocation.cpp lldb/trunk/source/Core/IOHandler.cpp

[Lldb-commits] [lldb] r202447 - Revert Xcode run argument settings that were accidentally checked in.

2014-02-27 Thread Greg Clayton
Author: gclayton Date: Thu Feb 27 18:13:03 2014 New Revision: 202447 URL: http://llvm.org/viewvc/llvm-project?rev=202447view=rev Log: Revert Xcode run argument settings that were accidentally checked in. Modified: lldb/trunk/lldb.xcodeproj/xcshareddata/xcschemes/lldb-tool.xcscheme

[Lldb-commits] [lldb] r202464 - Plumb the EvaluateExpressionOptions::{Set, Get}StopOthers through the SB API, and make it work in RunThreadPlan.

2014-02-27 Thread Jim Ingham
Author: jingham Date: Thu Feb 27 20:52:06 2014 New Revision: 202464 URL: http://llvm.org/viewvc/llvm-project?rev=202464view=rev Log: Plumb the EvaluateExpressionOptions::{Set,Get}StopOthers through the SB API, and make it work in RunThreadPlan. Also remove SetStopOthers from the

Re: [Lldb-commits] [PATCH] Fixes for 32-bit linux ptrace and RegisterContext issues

2014-02-27 Thread Matthew Gardiner
Todd Fiala wrote: +case eTypeUInt64: return m_data.uint32; On the surface this line looks a little suspect but I need to see it in context. Agreed. It's not a really good fix. And it probably breaks a design goal in the RegisterValue. My motivation for making the change was merely