[Lldb-commits] [lldb] lldb unused var fix for NetBSD < 10. (PR #93377)

2024-05-25 Thread David CARLIER via lldb-commits
https://github.com/devnexen closed https://github.com/llvm/llvm-project/pull/93377 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] lldb unused var fix for NetBSD < 10. (PR #93377)

2024-05-25 Thread David CARLIER via lldb-commits
https://github.com/devnexen created https://github.com/llvm/llvm-project/pull/93377 None >From 9dcd8be919582006b5ade0b6c1f3074678f50bed Mon Sep 17 00:00:00 2001 From: David Carlier Date: Sat, 25 May 2024 10:59:54 + Subject: [PATCH] lldb unused var fix for NetBSD < 10. ---

[Lldb-commits] [lldb] [lldb] checks beforehand if lldb can trace/attach a process on FreeBSD. (PR #79662)

2024-02-11 Thread David CARLIER via lldb-commits
https://github.com/devnexen closed https://github.com/llvm/llvm-project/pull/79662 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] [lldb] checks beforehand if lldb can trace/attach a process on FreeBSD. (PR #79662)

2024-02-11 Thread David CARLIER via lldb-commits
https://github.com/devnexen updated https://github.com/llvm/llvm-project/pull/79662 >From e2da8be542e7116369ab91cb0ce25163e18e76f3 Mon Sep 17 00:00:00 2001 From: David Carlier Date: Fri, 26 Jan 2024 22:47:15 + Subject: [PATCH] [lldb] checks if lldb can trace/attach/set a breakpoint a

[Lldb-commits] [lldb] [lldb] Fix FreeBSD build. (PR #81353)

2024-02-10 Thread David CARLIER via lldb-commits
https://github.com/devnexen closed https://github.com/llvm/llvm-project/pull/81353 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] [lldb] Fix FreeBSD build. (PR #81353)

2024-02-10 Thread David CARLIER via lldb-commits
https://github.com/devnexen created https://github.com/llvm/llvm-project/pull/81353 None >From eaa5c11364bebb5e85a1dc976f2bfaceefaef7f8 Mon Sep 17 00:00:00 2001 From: David Carlier Date: Sat, 10 Feb 2024 10:02:07 + Subject: [PATCH] [lldb] Fix FreeBSD build. ---

[Lldb-commits] [lldb] [lldb] checks beforehand if lldb can trace/attach a process on FreeBSD. (PR #79662)

2024-02-09 Thread David CARLIER via lldb-commits
devnexen wrote: ping :) https://github.com/llvm/llvm-project/pull/79662 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] [lldb] checks beforehand if lldb can trace/attach a process on FreeBSD. (PR #79662)

2024-01-26 Thread David CARLIER via lldb-commits
https://github.com/devnexen updated https://github.com/llvm/llvm-project/pull/79662 >From 7cfed8b3440d9257598fe94e02adc4d926692850 Mon Sep 17 00:00:00 2001 From: David Carlier Date: Fri, 26 Jan 2024 22:47:15 + Subject: [PATCH] [lldb] checks beforehand if lldb can trace/attach a process on

[Lldb-commits] [lldb] [lldb] checks beforehand if lldb can trace/attach a process on FreeBSD. (PR #79662)

2024-01-26 Thread David CARLIER via lldb-commits
https://github.com/devnexen updated https://github.com/llvm/llvm-project/pull/79662 >From 746a6959e270b086184ce095b11eb4df691dc4c9 Mon Sep 17 00:00:00 2001 From: David Carlier Date: Fri, 26 Jan 2024 22:47:15 + Subject: [PATCH] [lldb] checks beforehand if lldb can trace/attach a process on

[Lldb-commits] [lldb] [lldb] checks beforehand if lldb can trace/attach a process on FreeBSD. (PR #79662)

2024-01-26 Thread David CARLIER via lldb-commits
https://github.com/devnexen updated https://github.com/llvm/llvm-project/pull/79662 >From 7fccec625677e8cabe8c69ac2651c37716dc30bf Mon Sep 17 00:00:00 2001 From: David Carlier Date: Fri, 26 Jan 2024 22:47:15 + Subject: [PATCH] [lldb] checks beforehand if lldb can trace/attach a process on

[Lldb-commits] [lldb] [lldb] checks beforehand if lldb can trace/attach a process on FreeBSD. (PR #79662)

2024-01-26 Thread David CARLIER via lldb-commits
@@ -48,14 +48,37 @@ static Status EnsureFDFlags(int fd, int flags) { return error; } +static Status CanTrace() { + Status status; devnexen wrote: true https://github.com/llvm/llvm-project/pull/79662 ___

[Lldb-commits] [lldb] [lldb] checks beforehand if lldb can trace/attach a process on FreeBSD. (PR #79662)

2024-01-26 Thread David CARLIER via lldb-commits
@@ -48,14 +48,37 @@ static Status EnsureFDFlags(int fd, int flags) { return error; } +static Status CanTrace() { + Status status; + int proc_debug, ret; + size_t len = sizeof(proc_debug); + ret = ::sysctlbyname("security.bsd.unprivileged_proc_debug", _debug, +

[Lldb-commits] [lldb] [lldb] checks beforehand if lldb can trace/attach a process on FreeBSD. (PR #79662)

2024-01-26 Thread David CARLIER via lldb-commits
https://github.com/devnexen updated https://github.com/llvm/llvm-project/pull/79662 >From 52618e6e6e028ea4a65728eda0c877dce176ccfa Mon Sep 17 00:00:00 2001 From: David Carlier Date: Fri, 26 Jan 2024 22:47:15 + Subject: [PATCH] [lldb] checks beforehand if lldb can trace/attach a process on

[Lldb-commits] [lldb] [lldb] checks beforehand if lldb can trace/attach a process on FreeBSD. (PR #79662)

2024-01-26 Thread David CARLIER via lldb-commits
https://github.com/devnexen created https://github.com/llvm/llvm-project/pull/79662 before having the generic EINVAL message, we check if the `security.bsd.unprivileged_proc_debug` allows process debugging. close #79634 >From 492521e66288a497bf5b4a4a8ce554dffeb35727 Mon Sep 17 00:00:00 2001

[Lldb-commits] [lldb] r371491 - [LLDB] FreeBSD fix new SetFile call.

2019-09-10 Thread David Carlier via lldb-commits
Author: devnexen Date: Tue Sep 10 00:33:39 2019 New Revision: 371491 URL: http://llvm.org/viewvc/llvm-project?rev=371491=rev Log: [LLDB] FreeBSD fix new SetFile call. Modified: lldb/trunk/source/Host/freebsd/HostInfoFreeBSD.cpp Modified: lldb/trunk/source/Host/freebsd/HostInfoFreeBSD.cpp

[Lldb-commits] [lldb] r371417 - LLDB - Simplify GetProgramFileSpec

2019-09-09 Thread David Carlier via lldb-commits
Author: devnexen Date: Mon Sep 9 09:10:14 2019 New Revision: 371417 URL: http://llvm.org/viewvc/llvm-project?rev=371417=rev Log: LLDB - Simplify GetProgramFileSpec Reviewers: zturner, emaste Reviewed By: emaste Differential Revision: https://reviews.llvm.org/D46518 Modified:

[Lldb-commits] [lldb] r365761 - [LLDB] Fix FreeBSD build.

2019-07-11 Thread David Carlier via lldb-commits
Author: devnexen Date: Thu Jul 11 05:21:04 2019 New Revision: 365761 URL: http://llvm.org/viewvc/llvm-project?rev=365761=rev Log: [LLDB] Fix FreeBSD build. To align with the LaunchThread change. Reviewers: MaskRay, mgorny Reviewed By: MaskRay Differential Revision:

[Lldb-commits] [lldb] r363135 - [LLDB] Fix FreeBSD build

2019-06-12 Thread David Carlier via lldb-commits
Author: devnexen Date: Wed Jun 12 01:54:14 2019 New Revision: 363135 URL: http://llvm.org/viewvc/llvm-project?rev=363135=rev Log: [LLDB] Fix FreeBSD build The auxiliary vector method had the wrong signature. Reviewers: MaskRay, teemperor, aadsm Reviewed By: MaskRay, teemperor Differential

[Lldb-commits] [lldb] r352744 - [LLDB] FreeBSD suppress compilation warning

2019-01-31 Thread David Carlier via lldb-commits
Author: devnexen Date: Thu Jan 31 03:54:58 2019 New Revision: 352744 URL: http://llvm.org/viewvc/llvm-project?rev=352744=rev Log: [LLDB] FreeBSD suppress compilation warning Reviewers: labath, teemperor Reviewed By: teemperor Differential Revision: https://reviews.llvm.org/D57506 M

[Lldb-commits] [lldb] r346109 - [LLDB] Fix FreeBSD/Darwin build

2018-11-04 Thread David Carlier via lldb-commits
Author: devnexen Date: Sun Nov 4 15:19:25 2018 New Revision: 346109 URL: http://llvm.org/viewvc/llvm-project?rev=346109=rev Log: [LLDB] Fix FreeBSD/Darwin build Reviewers: JDevlieghere, tatyana-krasnukha Reviwed By: tatyana-krasnukha Differential Revision: https://reviews.llvm.org/D54084

[Lldb-commits] [lldb] r335489 - [LLDB] Select helper sign comparison fix

2018-06-25 Thread David Carlier via lldb-commits
Author: devnexen Date: Mon Jun 25 09:10:20 2018 New Revision: 335489 URL: http://llvm.org/viewvc/llvm-project?rev=335489=rev Log: [LLDB] Select helper sign comparison fix The constant could be unsigned thus explicit cast to silent compilation warnings Reviewers: aprantl Reviewed By: aprantl

[Lldb-commits] [lldb] r334177 - [LLDB] Unit tests / typo fix

2018-06-07 Thread David Carlier via lldb-commits
Author: devnexen Date: Thu Jun 7 01:58:34 2018 New Revision: 334177 URL: http://llvm.org/viewvc/llvm-project?rev=334177=rev Log: [LLDB] Unit tests / typo fix removing unnecessary comma. Modified: lldb/trunk/unittests/Symbol/TestType.cpp Modified: lldb/trunk/unittests/Symbol/TestType.cpp

[Lldb-commits] [lldb] r333889 - [LLDB] Unit tests basic support for OpenBSD

2018-06-04 Thread David Carlier via lldb-commits
Author: devnexen Date: Mon Jun 4 04:59:18 2018 New Revision: 333889 URL: http://llvm.org/viewvc/llvm-project?rev=333889=rev Log: [LLDB] Unit tests basic support for OpenBSD OpenBSD python module. Added: lldb/trunk/packages/Python/lldbsuite/test/plugins/builder_openbsd.py Added:

[Lldb-commits] [lldb] r333888 - [LLDB] Unit tests basic support for OpenBSD

2018-06-04 Thread David Carlier via lldb-commits
Author: devnexen Date: Mon Jun 4 04:57:12 2018 New Revision: 333888 URL: http://llvm.org/viewvc/llvm-project?rev=333888=rev Log: [LLDB] Unit tests basic support for OpenBSD Add OpenBSD python module in order to support unit tests. Reviewers: labath, zturner Reviewed By: labath Differential