blob: 7cb364a4520d7a33498131647ee1255f124f2ec9 (
plain)
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
/* These routines are used by several of the demos. */
#include "config.h"
#include <stdio.h>
#include <signal.h>
#ifdef HAVE_STDLIB_H
# include <stdlib.h>
#endif
#include <slang.h>
static void demolib_exit (int sig)
{
SLang_reset_tty ();
SLsmg_reset_smg ();
if (sig)
{
fprintf (stderr, "Exiting on signal %d\n", sig);
exit (1);
}
exit (sig);
}
#ifdef SIGTSTP
static void sigtstp_handler (int sig)
{
demolib_exit (sig);
}
#endif
#ifdef SIGINT
static void sigint_handler (int sig)
{
demolib_exit (sig);
}
#endif
static void init_signals (void)
{
#ifdef SIGTSTP
SLsignal (SIGTSTP, sigtstp_handler);
#endif
#ifdef SIGINT
SLsignal (SIGINT, sigint_handler);
#endif
}
static void exit_error_hook (char *fmt, va_list ap)
{
SLang_reset_tty ();
SLsmg_reset_smg ();
vfprintf (stderr, fmt, ap);
fputc ('\n', stderr);
exit (1);
}
static int demolib_init_terminal (int tty, int smg)
{
SLang_Exit_Error_Hook = exit_error_hook;
/* It is wise to block the occurance of display related signals while we are
* initializing.
*/
SLsig_block_signals ();
SLtt_get_terminfo ();
/* SLkp_init assumes that SLtt_get_terminfo has been called. */
if (tty && (-1 == SLkp_init ()))
{
SLsig_unblock_signals ();
return -1;
}
init_signals ();
if (tty) SLang_init_tty (-1, 0, 1);
#ifdef REAL_UNIX_SYSTEM
if (tty) SLtty_set_suspend_state (1);
#endif
if (smg
&& (-1 == SLsmg_init_smg ()))
{
SLsig_unblock_signals ();
return -1;
}
SLsig_unblock_signals ();
return 0;
}
|