[Lldb-commits] [lldb] a1f20da - The help string for stop-on-shared-library-load was copied to stop-on-exec.
Jim Ingham via lldb-commits
lldb-commits at lists.llvm.org
Thu Jun 23 13:54:57 PDT 2022
Author: Jim Ingham
Date: 2022-06-23T13:54:50-07:00
New Revision: a1f20da315c8f9aa109b49c47797898ad6559d1a
URL: https://github.com/llvm/llvm-project/commit/a1f20da315c8f9aa109b49c47797898ad6559d1a
DIFF: https://github.com/llvm/llvm-project/commit/a1f20da315c8f9aa109b49c47797898ad6559d1a.diff
LOG: The help string for stop-on-shared-library-load was copied to stop-on-exec.
Fix it so it says it does what it does.
Added:
Modified:
lldb/source/Target/TargetProperties.td
Removed:
################################################################################
diff --git a/lldb/source/Target/TargetProperties.td b/lldb/source/Target/TargetProperties.td
index 02d82fbc109b9..acee09ca0469e 100644
--- a/lldb/source/Target/TargetProperties.td
+++ b/lldb/source/Target/TargetProperties.td
@@ -230,7 +230,7 @@ let Definition = "process" in {
def StopOnExec: Property<"stop-on-exec", "Boolean">,
Global,
DefaultTrue,
- Desc<"If true, stop when a shared library is loaded or unloaded.">;
+ Desc<"If true, stop when the inferior exec's.">;
def UtilityExpressionTimeout: Property<"utility-expression-timeout", "UInt64">,
DefaultUnsignedValue<15>,
Desc<"The time in seconds to wait for LLDB-internal utility expressions.">;
More information about the lldb-commits
mailing list