|
@@ -38,6 +38,8 @@
|
|
|
|
|
|
#include <spinlock.h>
|
|
|
#include <thread.h> /* required for struct threadarray */
|
|
|
+#include <limits.h> // using to restrict array size of procs
|
|
|
+#include <list.h>
|
|
|
|
|
|
struct addrspace;
|
|
|
struct vnode;
|
|
@@ -45,12 +47,23 @@ struct vnode;
|
|
|
struct semaphore;
|
|
|
#endif // UW
|
|
|
|
|
|
+// struct that contains all the processes in the system
|
|
|
+struct procs
|
|
|
+{
|
|
|
+ struct proc * pids[PID_MAX - PID_MIN + 1]; // total # of valid PIDs
|
|
|
+ int lastpid; // last pid issued
|
|
|
+}
|
|
|
+
|
|
|
/*
|
|
|
* Process structure.
|
|
|
*/
|
|
|
struct proc
|
|
|
{
|
|
|
char * p_name; /* Name of this process */
|
|
|
+ int pid; // pretty self-explanatory
|
|
|
+ struct proc * parent; // again, pretty damn obvious
|
|
|
+ struct list * kids; // list of kid processes (by pid)
|
|
|
+ int exitcode; // exitcode if exited, -1 if running
|
|
|
struct spinlock p_lock; /* Lock for this structure */
|
|
|
struct threadarray p_threads; /* Threads in this process */
|
|
|
|
|
@@ -66,14 +79,14 @@ struct proc
|
|
|
/* you will probably need to change this when implementing file-related
|
|
|
system calls, since each process will need to keep track of all files
|
|
|
it has opened, not just the console. */
|
|
|
- struct vnode *console; /* a vnode for the console device */
|
|
|
+ struct vnode * console; /* a vnode for the console device */
|
|
|
#endif
|
|
|
|
|
|
/* add more material here as needed */
|
|
|
};
|
|
|
|
|
|
/* This is the process structure for the kernel and for kernel-only threads. */
|
|
|
-extern struct proc *kproc;
|
|
|
+extern struct proc * kproc;
|
|
|
|
|
|
/* Semaphore used to signal when there are no more processes */
|
|
|
#ifdef UW
|