comparison src/.gdbinit @ 66903:4689a51b18f9

Make SIGTSTP work like SIGINT normally does.
author Nick Roberts <nickrob@snap.net.nz>
date Wed, 16 Nov 2005 01:03:35 +0000
parents 98ff41842c94
children 2385088bbb84 03934708f1e9
comparison
equal deleted inserted replaced
66902:8d7f09693194 66903:4689a51b18f9
29 # This has one unfortunate effect: you can't type C-c 29 # This has one unfortunate effect: you can't type C-c
30 # at the GDB to stop Emacs, when using X. 30 # at the GDB to stop Emacs, when using X.
31 # However, C-z works just as well in that case. 31 # However, C-z works just as well in that case.
32 handle 2 noprint pass 32 handle 2 noprint pass
33 33
34 # Make it work like SIGINT normally does.
35 handle SIGTSTP nopass
36
34 # Don't pass SIGALRM to Emacs. This makes problems when 37 # Don't pass SIGALRM to Emacs. This makes problems when
35 # debugging. 38 # debugging.
36 handle SIGALRM ignore 39 handle SIGALRM ignore
37 40
38 # $valmask and $tagmask are mask values set up by the xreload macro below. 41 # $valmask and $tagmask are mask values set up by the xreload macro below.