aboutsummaryrefslogtreecommitdiffstats
path: root/src/mds-vt.c
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2014-09-20 16:40:54 +0200
committerMattias Andrée <maandree@operamail.com>2014-09-20 16:40:54 +0200
commit9ce2ab98eb392998c0d0d75033bab03681ae6cea (patch)
tree4739cca1bd7a0d77a9c0456c227ab74579fdc0de /src/mds-vt.c
parentverify that headers in messages are encoded with proper utf-8 (diff)
downloadmds-9ce2ab98eb392998c0d0d75033bab03681ae6cea.tar.gz
mds-9ce2ab98eb392998c0d0d75033bab03681ae6cea.tar.bz2
mds-9ce2ab98eb392998c0d0d75033bab03681ae6cea.tar.xz
SIGRTMAX is used internally by valgrind
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'src/mds-vt.c')
-rw-r--r--src/mds-vt.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mds-vt.c b/src/mds-vt.c
index 39df209..01b7b7c 100644
--- a/src/mds-vt.c
+++ b/src/mds-vt.c
@@ -267,9 +267,9 @@ int initialise_server(void)
fail_if (server_initialised() < 0);
fail_if (mds_message_initialise(&received));
- fail_if (xsigaction(SIGRTMIN + 1, received_switch_vt) < 0);
fail_if (xsigaction(SIGRTMIN + 2, received_switch_vt) < 0);
- vt_construct_mode(1, SIGRTMIN + 1, SIGRTMIN + 2, &mode);
+ fail_if (xsigaction(SIGRTMIN + 3, received_switch_vt) < 0);
+ vt_construct_mode(1, SIGRTMIN + 2, SIGRTMIN + 3, &mode);
fail_if (vt_get_set_mode(display_tty_fd, 1, &mode) < 0);
if (vt_set_exclusive(display_tty_fd, 1) < 0)
xperror(*argv);
@@ -713,7 +713,7 @@ void signal_all(int signo)
*/
void received_switch_vt(int signo)
{
- int leaving = signo == (SIGRTMIN + 1);
+ int leaving = signo == (SIGRTMIN + 2);
switching_vt = leaving ? 1 : -1;
}