From 9ce2ab98eb392998c0d0d75033bab03681ae6cea Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Sat, 20 Sep 2014 16:40:54 +0200 Subject: SIGRTMAX is used internally by valgrind MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- src/mds-vt.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/mds-vt.c') 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; } -- cgit v1.2.3-70-g09d2