[Lldb-commits] [PATCH] D93874: [process] fix exec support on Linux

2020-12-28 Thread walter erquinigo via Phabricator via lldb-commits
wallace updated this revision to Diff 313904. wallace added a comment. improve test Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D93874/new/ https://reviews.llvm.org/D93874 Files: lldb/include/lldb/Target/Process.h

[Lldb-commits] [PATCH] D93874: [process] fix exec support on Linux

2020-12-28 Thread walter erquinigo via Phabricator via lldb-commits
wallace created this revision. wallace added reviewers: clayborg, jingham. wallace requested review of this revision. Herald added a project: LLDB. Herald added a subscriber: lldb-commits. On Linux, unlike Darwin, after a process performs exec, the thread id doesn't change. This causes any

[Lldb-commits] [lldb] 76a718e - [lldb] Deduplicate some lldb-server tests

2020-12-28 Thread Pavel Labath via lldb-commits
Author: Pavel Labath Date: 2020-12-28T20:16:08+01:00 New Revision: 76a718ee939ed84d95b005f36cfbd103a702522f URL: https://github.com/llvm/llvm-project/commit/76a718ee939ed84d95b005f36cfbd103a702522f DIFF: https://github.com/llvm/llvm-project/commit/76a718ee939ed84d95b005f36cfbd103a702522f.diff

[Lldb-commits] [PATCH] D93481: [lldb/Lua] add support for multiline scripted breakpoints

2020-12-28 Thread Pedro Tammela via Phabricator via lldb-commits
tammela added inline comments. Comment at: lldb/source/Plugins/ScriptInterpreter/Lua/Lua.h:39 llvm::Error LoadModule(llvm::StringRef filename); + llvm::Error LoadBuffer(llvm::StringRef buffer, bool pop_result = true); llvm::Error ChangeIO(FILE *out, FILE *err);

[Lldb-commits] [PATCH] D93481: [lldb/Lua] add support for multiline scripted breakpoints

2020-12-28 Thread Pedro Tammela via Phabricator via lldb-commits
tammela updated this revision to Diff 313870. tammela added a comment. Addressing comments Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D93481/new/ https://reviews.llvm.org/D93481 Files: lldb/source/Plugins/ScriptInterpreter/Lua/Lua.cpp