aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md2
-rw-r--r--src/kernel/user/process.c1
2 files changed, 2 insertions, 1 deletions
diff --git a/README.md b/README.md
index 4ae6939..12aa13f 100644
--- a/README.md
+++ b/README.md
@@ -10,7 +10,7 @@ I have considered using higher-level languages but for lack of understanding of
the associated compiler, I never have had the same impression of understanding
exactly what was happening that I had with C. Also, the necessity of a runtime
is bothering. I do regret not being able to exploit the magic of strongly typed
-functionnal languages, but what can I do...
+functional languages, but what can I do...
### Monolithic design
diff --git a/src/kernel/user/process.c b/src/kernel/user/process.c
index af7d86f..a003143 100644
--- a/src/kernel/user/process.c
+++ b/src/kernel/user/process.c
@@ -209,6 +209,7 @@ void process_exit(process_t *p, int status, int exit_code) {
c->parent = 0;
c->next_child = 0;
+ // TODO : if c was terminated, free it or what ?
}
if (p->parent == 0) {