summaryrefslogtreecommitdiffstats
path: root/lldb/source/Interpreter/CommandInterpreter.cpp
diff options
context:
space:
mode:
authorGreg Clayton <gclayton@apple.com>2012-09-27 00:02:27 +0000
committerGreg Clayton <gclayton@apple.com>2012-09-27 00:02:27 +0000
commite86fd74901534965640bb8f6ba3c5ffc377f5a26 (patch)
tree16f009b2ba2c742312c6abe868fa03135a3e98f6 /lldb/source/Interpreter/CommandInterpreter.cpp
parentc091ea33f07a9da83a78edc3e73685a5f1f14577 (diff)
downloadbcm5719-llvm-e86fd74901534965640bb8f6ba3c5ffc377f5a26.tar.gz
bcm5719-llvm-e86fd74901534965640bb8f6ba3c5ffc377f5a26.zip
Added "k" as an alias to "process kill" since the new "kdb-remote" will now conflict with it.
llvm-svn: 164737
Diffstat (limited to 'lldb/source/Interpreter/CommandInterpreter.cpp')
-rw-r--r--lldb/source/Interpreter/CommandInterpreter.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/lldb/source/Interpreter/CommandInterpreter.cpp b/lldb/source/Interpreter/CommandInterpreter.cpp
index 9cec1f39906..29ebb694890 100644
--- a/lldb/source/Interpreter/CommandInterpreter.cpp
+++ b/lldb/source/Interpreter/CommandInterpreter.cpp
@@ -268,7 +268,10 @@ CommandInterpreter::Initialize ()
cmd_obj_sp = GetCommandSPExact ("process kill", false);
if (cmd_obj_sp)
+ {
AddAlias ("kill", cmd_obj_sp);
+ AddAlias ("k", cmd_obj_sp);
+ }
cmd_obj_sp = GetCommandSPExact ("process launch", false);
if (cmd_obj_sp)
OpenPOWER on IntegriCloud