diff options
author | Freya Murphy <freya@freyacat.org> | 2025-03-27 14:35:29 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2025-03-27 14:38:43 -0400 |
commit | 6ece4e20acd943b49b05a36f14594ad7413c1897 (patch) | |
tree | 44ccdad86bdc4f1dabd5670f5c096046581c38b7 /kernel/user.c | |
parent | move user to 0x30000, update kernel.ld (diff) | |
download | comus-6ece4e20acd943b49b05a36f14594ad7413c1897.tar.gz comus-6ece4e20acd943b49b05a36f14594ad7413c1897.tar.bz2 comus-6ece4e20acd943b49b05a36f14594ad7413c1897.zip |
remove trailing whitespace
Diffstat (limited to 'kernel/user.c')
-rw-r--r-- | kernel/user.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/user.c b/kernel/user.c index a019430..7c475e8 100644 --- a/kernel/user.c +++ b/kernel/user.c @@ -35,7 +35,7 @@ ** Location of the "user blob" in memory. ** ** These variables are filled in by the code in startup.S using values -** passed to it from the bootstrap. +** passed to it from the bootstrap. ** ** These are visible so that the startup code can find them. */ @@ -503,7 +503,7 @@ static context_t *stack_setup(pcb_t *pcb, uint32_t entry, const char **args) ** The user code was linked with a startup function that defines ** the entry point (_start), calls main(), and then calls exit() ** if main() returns. We need to set up the stack this way: - ** + ** ** esp -> context <- context save area ** ... <- context save area ** context <- context save area |