-
Notifications
You must be signed in to change notification settings - Fork 19
/
spawn.c
50 lines (42 loc) · 998 Bytes
/
spawn.c
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
/* $OpenBSD: spawn.c,v 1.13 2023/03/08 04:43:11 guenther Exp $ */
/* This file is in the public domain. */
/*
* Spawn. Actually just suspends Mg.
* Assumes POSIX job control.
*/
#include <sys/queue.h>
#include <signal.h>
#include <stdio.h>
#include "terminfo_term.h"
#include <termios.h>
#include "def.h"
/*
* This causes mg to send itself a stop signal. It assumes the parent
* shell supports POSIX job control. If the terminal supports an alternate
* screen, we will switch to it.
*/
int
spawncli(int f, int n)
{
sigset_t oset;
/* Very similar to what vttidy() does. */
ttcolor(CTEXT);
ttnowindow();
ttmove(nrow - 1, 0);
if (epresf != FALSE) {
tteeol();
epresf = FALSE;
}
if (ttcooked() == FALSE)
return (FALSE);
/* Exit application mode and tidy. */
tttidy();
ttflush();
(void)sigprocmask(SIG_SETMASK, NULL, &oset);
(void)kill(0, SIGTSTP);
(void)sigprocmask(SIG_SETMASK, &oset, NULL);
ttreinit();
/* Force repaint. */
sgarbf = TRUE;
return (ttraw());
}