diff options
author | Freya Murphy <freya@freyacat.org> | 2025-04-21 16:45:28 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2025-04-21 16:45:33 -0400 |
commit | ceb9471fed96f907e37a6ba031825c31167a8ff4 (patch) | |
tree | d98392e420b4541a6ba926ff4d8b3ebe85734580 /user/README | |
parent | update linker scripts (diff) | |
download | comus-ceb9471fed96f907e37a6ba031825c31167a8ff4.tar.gz comus-ceb9471fed96f907e37a6ba031825c31167a8ff4.tar.bz2 comus-ceb9471fed96f907e37a6ba031825c31167a8ff4.zip |
update userland to compile
Diffstat (limited to 'user/README')
-rw-r--r-- | user/README | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/user/README b/user/README deleted file mode 100644 index 548aac4..0000000 --- a/user/README +++ /dev/null @@ -1,25 +0,0 @@ -This directory contains the source code for all user-level processes, -split out by main function. - -Naming convention: - - idle() classic 'idle' process; ensures there is always a - runnable process to dispatch (vs., for instance, having - dispatch() pause when there is nothing to dispatch). - - init() classic 'init' process; starts the idle process, and - starts (and restarts) the user shell program. - - shell() "user shell" process, for spawning individual tests - - progN() program source code for user process(es) 'N' - -All of these expect at least one command-line argument. All are invoked -with command lines of this form: - - name x n - -Each of these is designed to be compiled and linked separately, with the -resulting load modules bundled into a blob for automatic loading by the -bootstrap. Each will typically use one or more library functions from the -../lib directory. |