-
Notifications
You must be signed in to change notification settings - Fork 0
/
sysproc.c
163 lines (142 loc) · 2.32 KB
/
sysproc.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
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
#include "types.h"
#include "x86.h"
#include "defs.h"
#include "date.h"
#include "param.h"
#include "memlayout.h"
#include "mmu.h"
#include "proc.h"
int
sys_fork(void)
{
return fork();
}
int
sys_exit(void)
{
exit();
return 0; // not reached
}
int
sys_wait(void)
{
return wait();
}
int
sys_kill(void)
{
int pid;
if(argint(0, &pid) < 0)
return -1;
return kill(pid);
}
int
sys_getpid(void)
{
return myproc()->pid;
}
int
sys_sbrk(void)
{
int addr;
int n;
if(argint(0, &n) < 0)
return -1;
addr = myproc()->sz;
if(growproc(n) < 0)
return -1;
return addr;
}
int
sys_sleep(void)
{
int n;
uint ticks0;
if(argint(0, &n) < 0)
return -1;
acquire(&tickslock);
ticks0 = ticks;
while(ticks - ticks0 < n){
if(myproc()->killed){
release(&tickslock);
return -1;
}
sleep(&ticks, &tickslock);
}
release(&tickslock);
return 0;
}
// return how many clock tick interrupts have occurred
// since start.
int
sys_uptime(void)
{
uint xticks;
acquire(&tickslock);
xticks = ticks;
release(&tickslock);
return xticks;
}
// return the number of existing processes
int
sys_getprocsinfo(void)
{
int flag = 1; // whether to print out information
struct procinfo procs[NPROC];
int procs_num = getprocsinfo(procs);
// print out process names
if (flag) {
for (int i = 0; i < procs_num; i++) {
cprintf("%d: %s\n", procs[i].pid, procs[i].pname);
}
}
return procs_num;
}
// return the virtual address space of a shared page
int
sys_shmem_access(void)
{
int page_num;
if (argint(0, &page_num) < 0) {
return -1;
}
return (int)shmem_access(page_num);
}
// return the number of processes that have access to a shared page
int
sys_shmem_count(void)
{
int page_num;
if (argint(0, &page_num) < 0) {
return -1;
}
return shmem_count(page_num);
}
// clone system call for creating the thread
int
sys_clone(void)
{
void (*fcn)(void*);
void *arg;
void *stack;
if (argptr(0, (void*)&fcn, sizeof(void*)) < 0) {
return -1;
}
if (argptr(1, (void*)&arg, sizeof(void*)) < 0) {
return -1;
}
if (argptr(2, (void*)&stack, sizeof(void*)) < 0) {
return -1;
}
return clone(fcn, arg, stack);
}
// join system call for waiting the child thread
int
sys_join(void)
{
int pid;
if (argint(0, &pid) < 0) {
return -1;
}
return join(pid);
}