diff options
| author | Kim F. Storm | 2006-12-19 15:37:45 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2006-12-19 15:37:45 +0000 |
| commit | 6a7d16fe7a567cb815c915c8e056bce4dab7ef9f (patch) | |
| tree | 7260bb6e7625902b614cb69e08c17b5c3d27da62 /src | |
| parent | 324e68ba200be35ca364aef2ea8bf2e29a751e4b (diff) | |
| download | emacs-6a7d16fe7a567cb815c915c8e056bce4dab7ef9f.tar.gz emacs-6a7d16fe7a567cb815c915c8e056bce4dab7ef9f.zip | |
Pass on SIGUSR1 and SIGUSR2 to Emacs.
Diffstat (limited to 'src')
| -rw-r--r-- | src/.gdbinit | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/.gdbinit b/src/.gdbinit index a99b17e16fb..6ba71e2f6e2 100644 --- a/src/.gdbinit +++ b/src/.gdbinit | |||
| @@ -34,6 +34,10 @@ handle 2 noprint pass | |||
| 34 | # Make it work like SIGINT normally does. | 34 | # Make it work like SIGINT normally does. |
| 35 | handle SIGTSTP nopass | 35 | handle SIGTSTP nopass |
| 36 | 36 | ||
| 37 | # Pass on user signals | ||
| 38 | handle SIGUSR1 noprint pass | ||
| 39 | handle SIGUSR2 noprint pass | ||
| 40 | |||
| 37 | # Don't pass SIGALRM to Emacs. This makes problems when | 41 | # Don't pass SIGALRM to Emacs. This makes problems when |
| 38 | # debugging. | 42 | # debugging. |
| 39 | handle SIGALRM ignore | 43 | handle SIGALRM ignore |