1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
$NetBSD: patch-ac,v 1.8 2019/09/15 06:53:36 maya Exp $
--- prog/check_funs.cpp.orig 2011-07-04 09:17:27.000000000 +0000
+++ prog/check_funs.cpp
@@ -28,6 +28,12 @@
#include <signal.h>
+#ifdef HAVE_OLD_SIGNAL
+#define SIGNALARG2 (void (*)(...))
+#else
+#define SIGNALARG2 /* empty, no change */
+#endif
+
#include "asc_ctype.hpp"
#include "check_funs.hpp"
#include "convert.hpp"
@@ -174,8 +180,8 @@ static void suspend_handler(int) {
static void continue_handler(int) {
restore_state();
- signal(SIGTSTP, suspend_handler);
- signal(SIGCONT, continue_handler),
+ signal(SIGTSTP, SIGNALARG2 suspend_handler);
+ signal(SIGCONT, SIGNALARG2 continue_handler),
last_signal = 0;
}
@@ -191,7 +197,7 @@ static void resize() {
static void suspend() {
save_state();
- signal(SIGTSTP, SIG_DFL);
+ signal(SIGTSTP, SIGNALARG2 SIG_DFL);
raise(SIGTSTP);
last_signal = 0;
}
@@ -200,7 +206,7 @@ static inline void handle_last_signal()
switch (last_signal) {
case SIGWINCH:
resize();
- signal(SIGWINCH, resize_handler);
+ signal(SIGWINCH, SIGNALARG2 resize_handler);
break;
case SIGTSTP:
suspend();
@@ -216,7 +222,8 @@ static void layout_screen() {
choice_w = 0;
nonl();
noecho();
- halfdelay(1);
+ cbreak();
+ timeout(100);
keypad(stdscr, true);
clear();
int height, width;
@@ -272,9 +279,9 @@ void begin_check() {
}
}
if (use_curses) {
- signal(SIGWINCH, resize_handler);
- signal(SIGTSTP, suspend_handler);
- signal(SIGCONT, continue_handler);
+ signal(SIGWINCH, SIGNALARG2 resize_handler);
+ signal(SIGTSTP, SIGNALARG2 suspend_handler);
+ signal(SIGCONT, SIGNALARG2 continue_handler);
}
#endif
if (use_curses) {
|