We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1158aca commit aac449bCopy full SHA for aac449b
deps/rabbitmq_prelaunch/src/rabbit_prelaunch_sighandler.erl
@@ -28,7 +28,15 @@
28
%% we can't handle SIGCONT, the signal used to resume the
29
%% program. Unfortunately, it makes a SIGTSTP handler less
30
%% useful here.
31
- sigtstp => ignore
+ sigtstp => ignore,
32
+
33
+ %% SIGINFO is triggered on *BSD systems by Ctrl+T to query the status
34
+ %% of the program. Things like the progress of a task.
35
+ siginfo => ignore,
36
37
+ %% SIGWINCH is triggered when the terminal window size changes to
38
+ %% allow the prograp to redraw its output.
39
+ sigwinch => ignore
40
}).
41
42
-define(SIGNAL_HANDLED_BY_ERLANG(Signal),
0 commit comments