blob: 800592d68bce454f107863c0716b3cdebdd6a478 (
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
|
/*
* Spawn. Actually just suspends Mg.
* Assumes POSIX job control.
*/
#include "def.h"
#include <signal.h>
#include <termios.h>
/*
* This causes mg to send itself a stop signal.
* Assumes the parent shell supports POSIX job control.
* If the terminal supports an alternate screen, we will sitch to it.
*/
/* ARGSUSED */
spawncli(f, n)
{
sigset_t oset;
int ttputc __P((int)); /* XXX */
/* Very similar to what vttidy() does. */
ttcolor(CTEXT);
ttnowindow();
ttmove(nrow - 1, 0);
if (epresf != FALSE) {
tteeol();
epresf = FALSE;
}
if (ttcooked() == FALSE)
return (FALSE);
tttidy(); /* Exit application mode and tidy. */
ttflush();
(void) sigprocmask(SIG_SETMASK, NULL, &oset);
(void) kill(0, SIGTSTP);
(void) sigprocmask(SIG_SETMASK, &oset, NULL);
ttreinit();
sgarbf = TRUE; /* Force repaint. */
return ttraw();
}
|