diff options
author | Marvin Borner | 2021-04-05 19:37:28 +0200 |
---|---|---|
committer | Marvin Borner | 2021-04-05 19:37:28 +0200 |
commit | ccc1dd7b4ba8ad5efe51aac32b26f0859d93fbe5 (patch) | |
tree | df0e8330b14cea9ed0dd6546f69be24996f52a80 /apps/README.md | |
parent | 1f957aafa4423c1579627a279d861d03d76f3dbb (diff) |
Restructured make layout and cleaned some apps
Diffstat (limited to 'apps/README.md')
-rw-r--r-- | apps/README.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/README.md b/apps/README.md index 214ef31..93d1831 100644 --- a/apps/README.md +++ b/apps/README.md @@ -1,3 +1,3 @@ # Userspace -All files in this directory run in the userspace. By default, apps will run in ring 3 and can be executed using the `exec` syscall. The default process that runs after the kernel is done initializing everything is `init.c`. This initial process may call GUI programs or other processes that can reproduce themself. The `idle.c` app however is the special idling process which runs if no other process is running (called in the process scheduler). +Every directory represents a single program that's run in the userspace. By default, apps will run in ring 3 and can be executed using the `exec` syscall. The default process that runs after the kernel is done initializing everything is `init`. This initial process may call GUI programs or other processes that can reproduce themself. The `idle` app however is the special idling process which runs if no other process is running (called in the process scheduler). |