summaryrefslogtreecommitdiff
path: root/include/task.h
diff options
context:
space:
mode:
authorMaite Gamper <victor@wenzeslaus.de>2022-11-19 18:22:02 +0100
committerMaite Gamper <victor@wenzeslaus.de>2022-11-19 18:22:02 +0100
commita887ca833205015db457a096bf95a96e10097c96 (patch)
treec6490da6a6942288af3d813b66c3d5764a1e2fac /include/task.h
parent22df143d7855bb2d90e201ed9a8ca51cc164209f (diff)
downloadsmallUnix-a887ca833205015db457a096bf95a96e10097c96.tar.gz
smallUnix-a887ca833205015db457a096bf95a96e10097c96.zip
restructure a bit and do the skeleton for unix-like syscalls
Diffstat (limited to 'include/task.h')
-rw-r--r--include/task.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/task.h b/include/task.h
index f6e9a65..029582f 100644
--- a/include/task.h
+++ b/include/task.h
@@ -18,7 +18,7 @@ struct task_t {
long pagelistCounter;
int parent_pid;
int forkspace_pid; /** Forkspace describes a process that was fork()ed but has the same
- base code stuff (i.e. exec() or simmelar was not run yet)
+ base code stuff (i.e. exec() or simelar was not run yet)
we have to copy the new pages over in order to make fork() work. Now this is probably
resource intensive */
struct task_t *next;