[Lldb-commits] LLVM buildmaster will be restarted tonight

2016-06-28 Thread Galina Kistanova via lldb-commits
Hello everyone, LLVM buildmaster will be updated and restarted after 8 PM Pacific time today. Thanks Galina ___ lldb-commits mailing list lldb-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] Buildbot numbers for the last week of 6/19/2016 - 6/25/2016

2016-06-28 Thread Galina Kistanova via lldb-commits
Hello everyone, Below are some buildbot numbers for the last week of 6/19/2016 - 6/25/2016. Please see the same data in attached csv files: The longest time each builder was red during the last week; "Status change ratio" by active builder (percent of builds that changed the builder status from

Re: [Lldb-commits] [PATCH] D21328: [lldb] Fixed incorrect endianness when evaluating certain expressions

2016-06-28 Thread Cameron via lldb-commits
cameron314 added a comment. @spyffe, do you have a minute to look this over? http://reviews.llvm.org/D21328 ___ lldb-commits mailing list lldb-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] r274037 - 64-bit LEB values are not always correctly decoded due to a casting issue, now they are.

2016-06-28 Thread Greg Clayton via lldb-commits
Author: gclayton Date: Tue Jun 28 12:14:18 2016 New Revision: 274037 URL: http://llvm.org/viewvc/llvm-project?rev=274037&view=rev Log: 64-bit LEB values are not always correctly decoded due to a casting issue, now they are. Modified: lldb/trunk/source/Core/DataExtractor.cpp lldb/trun

[Lldb-commits] [lldb] r274032 - Process::StopForDetachOrDestroy should actually return an error if it can't stop the

2016-06-28 Thread Jim Ingham via lldb-commits
Author: jingham Date: Tue Jun 28 11:35:58 2016 New Revision: 274032 URL: http://llvm.org/viewvc/llvm-project?rev=274032&view=rev Log: Process::StopForDetachOrDestroy should actually return an error if it can't stop the process. Modified: lldb/trunk/source/Target/Process.cpp Modified: lldb

Re: [Lldb-commits] [PATCH] D21751: Implement GetMemoryRegions() for Linux and Mac OSX core files.

2016-06-28 Thread Greg Clayton via lldb-commits
clayborg added a comment. In http://reviews.llvm.org/D21751#468738, @hhellyer wrote: > Since there’s a list of memory regions already created in the Process > implementations for the core fles I thought it made sense just to use that > directly, at least when reading from a core file. It mean

Re: [Lldb-commits] [PATCH] D21751: Implement GetMemoryRegions() for Linux and Mac OSX core files.

2016-06-28 Thread Howard Hellyer via lldb-commits
hhellyer added a comment. Since there’s a list of memory regions already created in the Process implementations for the core fles I thought it made sense just to use that directly, at least when reading from a core file. It meant there was no requirement to change those GetMemoryRegionInfo impl