-
Notifications
You must be signed in to change notification settings - Fork 0
/
fg.c
67 lines (51 loc) · 1.25 KB
/
fg.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#include "functions.h"
void fg(int jobnum)
{
int pid = searchbyJob(jobnum);
int pgid = getpgid(pid);
if(pid == -1)
{
write(2,"Background process with given job number doesn't exist.\n",57);
forn(i) smiley[i] = '\0';
strcat(smiley,":'(");
return;
}
//does it matter before or after? yes it does
signal(SIGTTIN, SIG_IGN);
signal(SIGTTOU, SIG_IGN);
if (tcsetpgrp(STDIN_FILENO , pgid) == -1)
{
perror("tcsetgroup error 1");
forn(i) smiley[i] = '\0';
strcat(smiley,":'(");
exit(EXIT_FAILURE);
}
kill(pid,SIGCONT);
int status;
//change to group for control z
waitpid(pid,&status,WUNTRACED);
if(status != 0)
{
forn(i) smiley[i] = '\0';
strcat(smiley,":'(");
}
// printf("shellpgid is %d\n",shellpgid);
if (tcsetpgrp(STDIN_FILENO,shellpgid) == -1)
{
perror("tcsetgroup error");
forn(i) smiley[i] = '\0';
strcat(smiley,":'(");
exit(EXIT_FAILURE);
}
signal(SIGTTIN, SIG_DFL);
signal(SIGTTOU, SIG_DFL);
char *com = searchName(pid);
delet(pid);
if(WIFSTOPPED(status) == 1)
{
forn(i) smiley[i] = '\0';
strcat(smiley,":'(");
insert(pid,com);
}
return;
}