forked from mit-pdos/xv6-public
-
Notifications
You must be signed in to change notification settings - Fork 12
/
proc.c
911 lines (788 loc) · 19.8 KB
/
proc.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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
#include "types.h"
#include "defs.h"
#include "param.h"
#include "memlayout.h"
#include "mmu.h"
#include "x86.h"
#include "proc.h"
#include "spinlock.h"
struct {
struct spinlock lock;
struct proc proc[NPROC];
} ptable;
static struct proc *initproc;
int nextpid = 1;
extern void forkret(void);
extern void trapret(void);
static void wakeup1(void *chan);
void
pinit(void)
{
initlock(&ptable.lock, "ptable");
}
// Initialize the swap table. It will set all relating fields to zero in process table.
void swaptableinit(void)
{
int i;
struct proc *thisproc;
acquire(&ptable.lock);
for (i = 0; i < NPROC; i++)
{
thisproc = &ptable.proc[i];
thisproc->num_mem_entries = 0;
thisproc->memstab_head = 0;
thisproc->memstab_tail = 0;
thisproc->swapstab_head = 0;
thisproc->swapstab_tail= 0;
thisproc->memqueue_head = 0;
thisproc->memqueue_tail = 0;
thisproc->num_swapstab_pages = 0;
int j;
for (j = 0; j < MAX_SWAPFILES; j++)
thisproc->swapfile[j] = 0;
}
release(&ptable.lock);
}
// Clear one memory swap table page. If clear link is set to true,
// it will also clear links (pointer to prev page and next page).
void memstab_page_clear(struct memstab_page *page, uint clear_link)
{
int i;
for (i = 0; i < NUM_MEMSTAB_PAGE_ENTRIES; i++)
{
page->entries[i].prev = 0;
page->entries[i].next = 0;
page->entries[i].vaddr = SLOT_USABLE;
}
if (clear_link)
{
page->next = 0;
page->prev = 0;
}
}
// Allocate one memory swap table page. Links are set to NULL initially.
struct memstab_page *memstab_page_alloc(void)
{
struct memstab_page *mstabpg;
if ((mstabpg = (struct memstab_page *)kalloc()) == 0)
return 0;
memstab_page_clear(mstabpg, 1);
return mstabpg;
}
// Clear a process's memory swap table. But the memory is not released.
// This function is designed for reuse the allocated memory.
void memstab_clear(struct proc *pr)
{
struct memstab_page *p = pr->memstab_head;
while (p != 0)
{
memstab_page_clear(p, 0);
p = p->next;
}
pr->num_mem_entries = 0;
pr->memqueue_head = 0;
pr->memqueue_tail = 0;
}
// Allocate a full memory swap table, return its head address.
// The swaptable is linked.
struct memstab_page * memstab_alloc(void)
{
int i;
struct memstab_page *slow, *fast, *head;
if ((slow = memstab_page_alloc()) == 0)
return 0;
head = slow;
for (i = 0; i < NUM_MEMSTAB_PAGES - 1; i++)
{
if ((fast = memstab_page_alloc()) == 0)
return 0;
slow->next = fast;
fast->prev = slow;
slow = fast;
}
return head;
}
// Clear one swapped swap table page. If clear_link is set, it will also clear pointers to prev and next page.
void swapstab_page_clear(struct swapstab_page *page, uint clear_link)
{
int i;
for (i = 0; i < NUM_SWAPSTAB_PAGE_ENTRIES; i++)
page->entries[i].vaddr = SLOT_USABLE;
if (clear_link)
{
page->next = 0;
page->prev = 0;
}
}
// Allocate one swapped swap table page. Links are NULL initially.
struct swapstab_page* swapstab_page_alloc(void)
{
struct swapstab_page *sstabpg;
if ((sstabpg = (struct swapstab_page *)kalloc()) == 0)
return 0;
swapstab_page_clear(sstabpg, 1);
return sstabpg;
}
// Clear the swapped swap table for a process.
// Preserve space and link relation.
void swapstab_clear(struct proc *pr)
{
struct swapstab_page *p;
p = pr->swapstab_head;
while (p != 0)
{
swapstab_page_clear(p, 0);
p = p->next;
}
}
int swapstab_growpage(struct proc *pr)
{
struct swapstab_page **head, **tail;
head = &(pr->swapstab_head);
tail = &(pr->swapstab_tail);
// Start growing.
if (*head == 0)
{
// This process has no swapped swap page.
if ((*head = swapstab_page_alloc()) == 0)
return -1;
*tail = *head;
}
else
{
// This process has some swapped swap page.
struct swapstab_page *temp = *tail;
if ((*tail = swapstab_page_alloc()) == 0)
return -1;
temp->next = *tail;
(*tail)->prev = temp;
}
return 0;
}
// Copy swap table (mem, swapped) from srcproc to dstproc.
// Don't preserve relative location in memory swap table.
// Returns 0 on success, otherwise -1.
int copy_stab(struct proc *dstproc, struct proc *srcproc)
{
// Copy memory swap table.
memstab_clear(dstproc);
dstproc->num_mem_entries = srcproc->num_mem_entries;
dstproc->memqueue_head = 0;
dstproc->memqueue_tail = 0;
struct memstab_page *curpg = dstproc->memstab_head;
int curpos = 0;
struct memstab_page_entry *cursrcent = srcproc->memqueue_head;
struct memstab_page_entry *olddstent = 0;
if (cursrcent != 0)
dstproc->memqueue_head = &(curpg->entries[curpos]);
while (cursrcent != 0)
{
if (olddstent != 0)
olddstent->next = &(curpg->entries[curpos]);
curpg->entries[curpos].prev = olddstent;
olddstent = &(curpg->entries[curpos]);
curpg->entries[curpos].vaddr = cursrcent->vaddr;
cursrcent = cursrcent->next;
curpos++;
if (curpos == NUM_MEMSTAB_PAGE_ENTRIES)
{
curpg = curpg->next;
curpos = 0;
}
}
dstproc->memqueue_tail = olddstent;
// Copy swapped swap table.
int i;
struct swapstab_page *srccurpg, *dstcurpg;
while (srcproc->num_swapstab_pages > dstproc->num_swapstab_pages)
{
if (swapstab_growpage(dstproc) == 0)
return -1;
}
srccurpg = srcproc->swapstab_head;
dstcurpg = dstproc->swapstab_head;
while (srccurpg != 0)
{
for (i = 0; i < NUM_SWAPSTAB_PAGE_ENTRIES; i++)
dstcurpg->entries[i] = srccurpg->entries[i];
dstcurpg = dstcurpg->next;
srccurpg = srccurpg->next;
}
return 0;
}
// Must be called with interrupts disabled
int
cpuid() {
return mycpu()-cpus;
}
// Must be called with interrupts disabled to avoid the caller being
// rescheduled between reading lapicid and running through the loop.
struct cpu*
mycpu(void)
{
int apicid, i;
if(readeflags()&FL_IF)
panic("mycpu called with interrupts enabled\n");
apicid = lapicid();
// APIC IDs are not guaranteed to be contiguous. Maybe we should have
// a reverse map, or reserve a register to store &cpus[i].
for (i = 0; i < ncpu; ++i) {
if (cpus[i].apicid == apicid)
return &cpus[i];
}
panic("unknown apicid\n");
}
// Disable interrupts so that we are not rescheduled
// while reading proc from the cpu structure
struct proc*
myproc(void) {
struct cpu *c;
struct proc *p;
pushcli();
c = mycpu();
p = c->proc;
popcli();
return p;
}
//PAGEBREAK: 32
// Look in the process table for an UNUSED proc.
// If found, change state to EMBRYO and initialize
// state required to run in the kernel.
// Otherwise return 0.
static struct proc*
allocproc(void)
{
struct proc *p;
char *sp;
acquire(&ptable.lock);
for(p = ptable.proc; p < &ptable.proc[NPROC]; p++)
if(p->state == UNUSED)
goto found;
release(&ptable.lock);
return 0;
found:
p->state = EMBRYO;
p->pid = nextpid++;
release(&ptable.lock);
// Allocate kernel stack.
if((p->kstack = kalloc()) == 0){
p->state = UNUSED;
return 0;
}
sp = p->kstack + KSTACKSIZE;
// Leave room for trap frame.
sp -= sizeof *p->tf;
p->tf = (struct trapframe*)sp;
// Set up new context to start executing at forkret,
// which returns to trapret.
sp -= 4;
*(uint*)sp = (uint)trapret;
sp -= sizeof *p->context;
p->context = (struct context*)sp;
memset(p->context, 0, sizeof *p->context);
p->context->eip = (uint)forkret;
// Set up mem swap table if not exist.
// Otherwise clear it.
if (p->memstab_head == 0)
{
if ((p->memstab_head = memstab_alloc()) == 0)
return 0;
}
else
memstab_clear(p);
// Set up data for page swapping.
p->num_mem_entries = 0;
p->memqueue_head = 0;
p->memqueue_tail = 0;
//Initialize sigs
for(int k = 0;k < MAX_SIG_PER_PROC;k++)
{
p->sig_permit[k] = 0;
}
return p;
}
//PAGEBREAK: 32
// Set up first user process.
void
userinit(void)
{
struct proc *p;
extern char _binary_initcode_start[], _binary_initcode_size[];
p = allocproc();
initproc = p;
if((p->pgdir = setupkvm()) == 0)
panic("userinit: out of memory?");
inituvm(p->pgdir, _binary_initcode_start, (int)_binary_initcode_size);
p->sz = PGSIZE;
memset(p->tf, 0, sizeof(*p->tf));
p->tf->cs = (SEG_UCODE << 3) | DPL_USER;
p->tf->ds = (SEG_UDATA << 3) | DPL_USER;
p->tf->es = p->tf->ds;
p->tf->ss = p->tf->ds;
p->tf->eflags = FL_IF;
p->tf->esp = PGSIZE;
p->tf->eip = 0; // beginning of initcode.S
safestrcpy(p->name, "initcode", sizeof(p->name));
p->cwd = namei("/");
p->cwdname[0] = '/';
p->cwdname[1] = '\0';
// this assignment to p->state lets other cores
// run this process. the acquire forces the above
// writes to be visible, and the lock is also needed
// because the assignment might not be atomic.
acquire(&ptable.lock);
p->state = RUNNABLE;
release(&ptable.lock);
}
// Grow current process's memory by n bytes.
// Return 0 on success, -1 on failure.
int
growproc(int n)
{
uint sz;
struct proc *curproc = myproc();
sz = curproc->sz;
if (sz + n > USERTOP - curproc->stack_size - PGSIZE)
return -1;
if(n > 0){
if((sz = allocuvm(curproc->pgdir, sz, sz + n)) == 0)
return -1;
} else if(n < 0){
if((sz = deallocuvm(curproc->pgdir, sz, sz + n)) == 0)
return -1;
}
curproc->sz = sz;
switchuvm(curproc);
return 0;
}
// Create a new process copying p as the parent.
// Sets up stack to return as if from system call.
// Caller must set state of returned proc to RUNNABLE.
int
fork(void)
{
int i, pid;
struct proc *np;
struct proc *curproc = myproc();
// Allocate process.
if((np = allocproc()) == 0){
return -1;
}
// Copy process state from proc.
if((np->pgdir = copyuvm(curproc->pgdir, curproc->sz)) == 0){
kfree(np->kstack);
np->kstack = 0;
np->state = UNUSED;
return -1;
}
np->sz = curproc->sz;
np->parent = curproc;
np->stack_size = curproc->stack_size;
*np->tf = *curproc->tf;
// Copy data for swapping.
np->num_mem_entries = curproc->num_mem_entries;
// Clear %eax so that fork returns 0 in the child.
np->tf->eax = 0;
for(i = 0; i < NOFILE; i++)
if(curproc->ofile[i])
np->ofile[i] = filedup(curproc->ofile[i]);
np->cwd = idup(curproc->cwd);
safestrcpy(np->cwdname, curproc->cwdname, sizeof(curproc->cwdname));
safestrcpy(np->name, curproc->name, sizeof(curproc->name));
pid = np->pid;
swapalloc(np);
char buf[PGSIZE / 2] = "";
int offset = 0;
int nread = 0;
if (kstrcmp(curproc->name, "init") != 0 && kstrcmp(curproc->name, "sh") != 0)
{
// Copy swap file.
offset = 0;
nread = 0;
while ((nread = swapread(curproc, buf, offset, PGSIZE / 2)) != 0)
{
if (swapwrite(np, buf, offset, nread) == -1)
panic("[ERROR] Copying swapfile in fork().");
offset += nread;
}
}
// Copy data for swapping.
if (copy_stab(np, curproc) == -1)
return -1;
acquire(&ptable.lock);
np->state = RUNNABLE;
release(&ptable.lock);
for(int ptr = 0;ptr < MAX_SIG_PER_PROC;ptr++)
{
np->sig_permit[ptr] = 0;
}
return pid;
}
// Exit the current process. Does not return.
// An exited process remains in the zombie state
// until its parent calls wait() to find out it exited.
void
exit(void)
{
struct proc *curproc = myproc();
struct proc *p;
int fd;
// Remove all sigs
for(int i = 0;i < MAX_SIG_PER_PROC;i++)
{
if(curproc->sig_permit[i] != 0)
deleteshm(curproc->sig_permit[i]);
}
if(curproc == initproc)
panic("init exiting");
// Close all open files.
for(fd = 0; fd < NOFILE; fd++){
if(curproc->ofile[fd]){
fileclose(curproc->ofile[fd]);
curproc->ofile[fd] = 0;
}
}
// Remove swap file.
if (swapdealloc(curproc) != 0)
panic("[ERROR] Remove swap file error.");
begin_op();
iput(curproc->cwd);
end_op();
curproc->cwd = 0;
memset(curproc->cwdname,0,1000*4);
acquire(&ptable.lock);
// Parent might be sleeping in wait().
wakeup1(curproc->parent);
// Pass abandoned children to init.
for(p = ptable.proc; p < &ptable.proc[NPROC]; p++){
if(p->parent == curproc){
p->parent = initproc;
if(p->state == ZOMBIE)
wakeup1(initproc);
}
}
// Jump into the scheduler, never to return.
curproc->state = ZOMBIE;
sched();
panic("zombie exit");
}
// Wait for a child process to exit and return its pid.
// Return -1 if this process has no children.
int
wait(void)
{
struct proc *p;
int havekids, pid;
struct proc *curproc = myproc();
acquire(&ptable.lock);
for(;;){
// Scan through table looking for exited children.
havekids = 0;
for(p = ptable.proc; p < &ptable.proc[NPROC]; p++){
if(p->parent != curproc)
continue;
havekids = 1;
if(p->state == ZOMBIE){
// Found one.
pid = p->pid;
kfree(p->kstack);
p->kstack = 0;
freevm(p->pgdir);
p->pid = 0;
p->parent = 0;
p->name[0] = 0;
p->killed = 0;
p->state = UNUSED;
release(&ptable.lock);
return pid;
}
}
// No point waiting if we don't have any children.
if(!havekids || curproc->killed){
release(&ptable.lock);
return -1;
}
// Wait for children to exit. (See wakeup1 call in proc_exit.)
sleep(curproc, &ptable.lock); //DOC: wait-sleep
}
}
//PAGEBREAK: 42
// Per-CPU process scheduler.
// Each CPU calls scheduler() after setting itself up.
// Scheduler never returns. It loops, doing:
// - choose a process to run
// - swtch to start running that process
// - eventually that process transfers control
// via swtch back to the scheduler.
void
scheduler(void)
{
struct proc *p;
struct cpu *c = mycpu();
c->proc = 0;
for(;;){
// Enable interrupts on this processor.
sti();
// Loop over process table looking for process to run.
acquire(&ptable.lock);
for(p = ptable.proc; p < &ptable.proc[NPROC]; p++){
if(p->state != RUNNABLE)
continue;
// Switch to chosen process. It is the process's job
// to release ptable.lock and then reacquire it
// before jumping back to us.
c->proc = p;
switchuvm(p);
p->state = RUNNING;
swtch(&(c->scheduler), p->context);
switchkvm();
// Process is done running for now.
// It should have changed its p->state before coming back.
c->proc = 0;
}
release(&ptable.lock);
}
}
// Enter scheduler. Must hold only ptable.lock
// and have changed proc->state. Saves and restores
// intena because intena is a property of this
// kernel thread, not this CPU. It should
// be proc->intena and proc->ncli, but that would
// break in the few places where a lock is held but
// there's no process.
void
sched(void)
{
int intena;
struct proc *p = myproc();
if(!holding(&ptable.lock))
panic("sched ptable.lock");
if(mycpu()->ncli != 1)
panic("sched locks");
if(p->state == RUNNING)
panic("sched running");
if(readeflags()&FL_IF)
panic("sched interruptible");
intena = mycpu()->intena;
swtch(&p->context, mycpu()->scheduler);
mycpu()->intena = intena;
}
// Give up the CPU for one scheduling round.
void
yield(void)
{
acquire(&ptable.lock); //DOC: yieldlock
myproc()->state = RUNNABLE;
sched();
release(&ptable.lock);
}
// A fork child's very first scheduling by scheduler()
// will swtch here. "Return" to user space.
void
forkret(void)
{
static int first = 1;
// Still holding ptable.lock from scheduler.
release(&ptable.lock);
if (first) {
// Some initialization functions must be run in the context
// of a regular process (e.g., they call sleep), and thus cannot
// be run from main().
first = 0;
iinit(ROOTDEV);
initlog(ROOTDEV);
}
// Return to "caller", actually trapret (see allocproc).
}
// Atomically release lock and sleep on chan.
// Reacquires lock when awakened.
void
sleep(void *chan, struct spinlock *lk)
{
struct proc *p = myproc();
if(p == 0)
panic("sleep");
if(lk == 0)
panic("sleep without lk");
// Must acquire ptable.lock in order to
// change p->state and then call sched.
// Once we hold ptable.lock, we can be
// guaranteed that we won't miss any wakeup
// (wakeup runs with ptable.lock locked),
// so it's okay to release lk.
if(lk != &ptable.lock){ //DOC: sleeplock0
acquire(&ptable.lock); //DOC: sleeplock1
release(lk);
}
// Go to sleep.
p->chan = chan;
p->state = SLEEPING;
sched();
// Tidy up.
p->chan = 0;
// Reacquire original lock.
if(lk != &ptable.lock){ //DOC: sleeplock2
release(&ptable.lock);
acquire(lk);
}
}
//PAGEBREAK!
// Wake up all processes sleeping on chan.
// The ptable lock must be held.
static void
wakeup1(void *chan)
{
struct proc *p;
for(p = ptable.proc; p < &ptable.proc[NPROC]; p++)
if(p->state == SLEEPING && p->chan == chan)
p->state = RUNNABLE;
}
// Wake up all processes sleeping on chan.
void
wakeup(void *chan)
{
acquire(&ptable.lock);
wakeup1(chan);
release(&ptable.lock);
}
// Kill the process with the given pid.
// Process won't exit until it returns
// to user space (see trap in trap.c).
int
kill(int pid)
{
struct proc *p;
acquire(&ptable.lock);
for(p = ptable.proc; p < &ptable.proc[NPROC]; p++){
if(p->pid == pid){
p->killed = 1;
// Wake process from sleep if necessary.
if(p->state == SLEEPING)
p->state = RUNNABLE;
release(&ptable.lock);
return 0;
}
}
release(&ptable.lock);
return -1;
}
//PAGEBREAK: 36
// Print a process listing to console. For debugging.
// Runs when user types ^P on console.
// No lock to avoid wedging a stuck machine further.
void
procdump(void)
{
static char *states[] = {
[UNUSED] "unused",
[EMBRYO] "embryo",
[SLEEPING] "sleep ",
[RUNNABLE] "runble",
[RUNNING] "run ",
[ZOMBIE] "zombie"
};
int i;
struct proc *p;
char *state;
uint pc[10];
for(p = ptable.proc; p < &ptable.proc[NPROC]; p++){
if(p->state == UNUSED)
continue;
if(p->state >= 0 && p->state < NELEM(states) && states[p->state])
state = states[p->state];
else
state = "???";
cprintf("%d %s %s", p->pid, state, p->name);
if(p->state == SLEEPING){
getcallerpcs((uint*)p->context->ebp+2, pc);
for(i=0; i<10 && pc[i] != 0; i++)
cprintf(" %p", pc[i]);
}
cprintf("\n");
}
}
//Make parentpid become pid's parent
void
reparent(int pid,int parentpid)
{
struct proc *p;
struct proc *parent = 0;
acquire(&ptable.lock);
for (p = ptable.proc; p < &ptable.proc[NPROC];p++){
if(p->pid == parentpid)
parent = p;
}
if(parent == 0){
release(&ptable.lock);
return;
}
for (p = ptable.proc; p < &ptable.proc[NPROC];p++){
if(p->pid == pid){
p->parent = parent;
release(&ptable.lock);
return;
}
}
release(&ptable.lock);
return;
}
//Get pid's current running state
int
getstate(int pid)
{
struct proc *p;
acquire(&ptable.lock);
for(p = ptable.proc; p < &ptable.proc[NPROC]; p++){
if(p->pid == pid){
release(&ptable.lock);
return p->state;
}
}
release(&ptable.lock);
return -1;
}
//Suspend current foreground process
int
suspend(void)
{
struct proc *p;
cprintf("\nCtrl+C detected\n");
for(p = ptable.proc; p < &ptable.proc[NPROC]; p++){
if (p != initproc && p->pid != 2 && (p->state == RUNNING || p->state == SLEEPING)) {
p->killed = 1;
return kill(p->pid);
}
}
return -1;
}
int
getprocinfo(int *pid, char (*name)[16], int *state, uint *sz)
{
struct proc p;
int i, j;
//将进程信息存入pid、name、state和sz中
for(i = 0; i < NPROC; i++)
{
p = ptable.proc[i];
pid[i] = p.pid;
for(j = 0; j < 16; j++)
name[i][j] = p.name[j];
state[i] = p.state;
sz[i] = p.sz;
}
return 0;
}
void
showproc(void)
{
cprintf("Process list:\n");
cprintf("Name\tHeap\tStack\t\n");
struct proc* p;
for(p=ptable.proc;p<&ptable.proc[NPROC];p++)
{
if(p->state==RUNNING || p->state==RUNNABLE || p->state==SLEEPING)
{
cprintf("%s\t%d\t%d\n",p->name,p->sz,p->stack_size);
}
}
}