aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/.lldbinit15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/.lldbinit b/src/.lldbinit
index 55523fa2719..17676a2dc4c 100644
--- a/src/.lldbinit
+++ b/src/.lldbinit
@@ -30,7 +30,22 @@ script -- sys.path.append('../etc')
30# Load our Python files 30# Load our Python files
31command script import emacs_lldb 31command script import emacs_lldb
32 32
33# Reload emacs_lldb.py
34command alias xreload command script import emacs_lldb
35
33# Print with children provider, depth 2. 36# Print with children provider, depth 2.
34command alias xprint frame variable -P 2 37command alias xprint frame variable -P 2
35 38
39# Attach to future Emacs. On a tty, it might be advisable to redirect
40# Emacs' stderr to some log file so that one can see the output of
41# xdebug_print and other output to stderr.
42command alias xattach process attach --waitfor --name emacs --continue
43
44# For tty Emacs
45process handle SIGWINCH --pass true --stop false --notify false
46process handle SIGINT --pass true --stop false --notify false
47
48b emacs_abort
49b die
50
36# end. 51# end.