Generate docs for libs, update docs build process
All checks were successful
Build documentation / build-and-deploy (push) Successful in 1m18s
All checks were successful
Build documentation / build-and-deploy (push) Successful in 1m18s
This commit is contained in:
@@ -15,7 +15,7 @@ jobs:
|
||||
- name: Install software
|
||||
run: |
|
||||
sudo apt-get update
|
||||
sudo apt-get install -y doxygen make rsync
|
||||
sudo apt-get install -y doxygen make rsync clang clang-tools
|
||||
|
||||
- name: Set up python3
|
||||
uses: actions/setup-python@v5
|
||||
@@ -28,7 +28,7 @@ jobs:
|
||||
pip install mkdocs mkdocs-material pymdown-extensions
|
||||
|
||||
- name: Build
|
||||
run: make docs
|
||||
run: ./aux/docs.sh
|
||||
|
||||
- name: Deploy
|
||||
env:
|
||||
|
||||
1
Makefile
1
Makefile
@@ -3,7 +3,6 @@ platform ?= amd64
|
||||
include make/apps.mk
|
||||
include make/kernel.mk
|
||||
include make/dist.mk
|
||||
include make/docs.mk
|
||||
include make/libmsl.mk
|
||||
include make/liballoc.mk
|
||||
include make/libterminal.mk
|
||||
|
||||
10
aux/compiledb.sh
Executable file
10
aux/compiledb.sh
Executable file
@@ -0,0 +1,10 @@
|
||||
#!/bin/sh
|
||||
|
||||
set -x
|
||||
|
||||
make -B all_compiledb_kernel
|
||||
make -B all_compiledb_liballoc
|
||||
make -B all_compiledb_libmsl
|
||||
make -B all_compiledb_libprocess
|
||||
make -B all_compiledb_libterminal
|
||||
make -B all_compiledb_libstring
|
||||
13
aux/docs.sh
Executable file
13
aux/docs.sh
Executable file
@@ -0,0 +1,13 @@
|
||||
#!/bin/sh
|
||||
|
||||
set -x
|
||||
|
||||
./aux/compiledb.sh
|
||||
|
||||
make -B docs_liballoc
|
||||
make -B docs_libmsl
|
||||
make -B docs_libprocess
|
||||
make -B docs_libstring
|
||||
make -B docs_libterminal
|
||||
|
||||
mkdocs build
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 118 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 51 KiB |
@@ -14,31 +14,18 @@ This article describes, how to build the kernel, how the build system works and
|
||||
|
||||
cd into root of MOP3 source tree.
|
||||
|
||||
Build the kernel:
|
||||
Run:
|
||||
```
|
||||
make -B all_kernel buildtype=<debug|release>
|
||||
./aux/devel.sh
|
||||
```
|
||||
|
||||
Build essential system applications:
|
||||
This script does everything for you - builds the kernel, userspace apps, necessary libraries and such.
|
||||
The buildsystem is quite compilcated, so it probably requires it's own article.
|
||||
|
||||
For debugging you can do:
|
||||
```
|
||||
make -B all_apps
|
||||
./aux/devel.sh debug
|
||||
```
|
||||
|
||||
Prepare the ramdisk:
|
||||
```
|
||||
make -B all_dist
|
||||
```
|
||||
|
||||
Build ISO image:
|
||||
```
|
||||
./aux/limine_iso_amd64.sh
|
||||
```
|
||||
|
||||
Now you have an ISO image, which can be run my QEMU or you can burn it onto a CD.
|
||||
|
||||
For the convenience of the developer, there's a magic "do all" script located in `aux`:
|
||||
```
|
||||
./aux/devel.sh # optionally "./aux/devel.sh debug" for debugging
|
||||
```
|
||||
|
||||
It does all the previous steps, just packed into a single script.
|
||||
This will build with `buildtype=debug` as opposed to `buildtype=release`. You now can view symbols inside
|
||||
of gdb or objdump.
|
||||
|
||||
@@ -2,24 +2,15 @@
|
||||
|
||||
## What is a process?
|
||||
|
||||
A process is a structure defined to represent an internal state of a user application's environment. This includes
|
||||
the necessary stacks, code, data and other resources. A process (usually) has it's own address, but in certain
|
||||
circumstances may share it with another process.
|
||||
A process represents a piece of executing code, has it's own stack and CPU state. Think of it as a "task". There are no
|
||||
kernel processes, only userspace processes.
|
||||
|
||||
## Only processes vs. processes-threads model
|
||||
A process must be a member of a broader process group or procgroup for short.
|
||||
|
||||
### Overview
|
||||
## Procgroups
|
||||
|
||||
MOP3 doesn't have a process-thread separation. Ususally in operating systems you'd have a "process", which consists
|
||||
of multiple worker threads. For eg. a single-threaded application is a process, which consists of one worker. In MOP3
|
||||
we do things a little differently. We only have processes, but some processes may work within the same pool of (generally speaking)
|
||||
"resources", such as a shared address space, shared memory allocations, mutexes and so on. An application then consists of
|
||||
not threads, but processes, which are loosely tied together via shared data.
|
||||
|
||||
#### Processes-threads model diagram
|
||||

|
||||
#### Only processes model diagram
|
||||

|
||||
A procgroup owns things like memory, kernel resources and such. Processes work within the scope of a procgroup. Once all
|
||||
procgroup's members die, the procgroup is considered unreachable and thus cleaned up.
|
||||
|
||||
## Scheduling
|
||||
|
||||
|
||||
14
init/init.c
14
init/init.c
@@ -18,7 +18,10 @@ void app_proc (void) {
|
||||
mutex_lock (MUTEX);
|
||||
|
||||
for (int i = 0; i < 3; i++)
|
||||
test (letter);
|
||||
terminal_print (&letter, 1);
|
||||
|
||||
for (volatile int i = 0; i < 1000*1000; i++)
|
||||
;
|
||||
|
||||
mutex_unlock (MUTEX);
|
||||
}
|
||||
@@ -38,10 +41,11 @@ void app_main (void) {
|
||||
for (;;) {
|
||||
mutex_lock (MUTEX);
|
||||
|
||||
for (int i = 0; i < 3; i++) {
|
||||
terminal_print ("hello\n", 6);
|
||||
}
|
||||
/* test (letter); */
|
||||
for (int i = 0; i < 3; i++)
|
||||
terminal_print (&letter, 1);
|
||||
|
||||
for (volatile int i = 0; i < 1000*1000; i++)
|
||||
;
|
||||
|
||||
mutex_unlock (MUTEX);
|
||||
}
|
||||
|
||||
2
liballoc/.gitignore
vendored
2
liballoc/.gitignore
vendored
@@ -1 +1,3 @@
|
||||
*.o
|
||||
*.json
|
||||
docs/
|
||||
|
||||
@@ -25,4 +25,9 @@ clean:
|
||||
format:
|
||||
clang-format -i $$(git ls-files '*.c' '*.h')
|
||||
|
||||
docs:
|
||||
clang-doc --format=md --output docs -p . $$(git ls-files '*.h')
|
||||
mkdir -p ../docs/libs/liballoc
|
||||
cp ./docs/GlobalNamespace/*.md ../docs/libs/liballoc
|
||||
|
||||
.PHONY: all clean format
|
||||
|
||||
2
libmsl/.gitignore
vendored
Normal file
2
libmsl/.gitignore
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
*.json
|
||||
docs/
|
||||
@@ -25,4 +25,9 @@ clean:
|
||||
format:
|
||||
clang-format -i $$(git ls-files '*.c' '*.h')
|
||||
|
||||
docs:
|
||||
clang-doc --format=md --output docs -p . $$(git ls-files '*.h')
|
||||
mkdir -p ../docs/libs/libmsl
|
||||
cp ./docs/GlobalNamespace/*.md ../docs/libs/libmsl
|
||||
|
||||
.PHONY: all clean format
|
||||
|
||||
2
libprocess/.gitignore
vendored
2
libprocess/.gitignore
vendored
@@ -1 +1,3 @@
|
||||
*.o
|
||||
*.json
|
||||
docs/
|
||||
|
||||
@@ -25,4 +25,9 @@ clean:
|
||||
format:
|
||||
clang-format -i $$(git ls-files '*.c' '*.h')
|
||||
|
||||
docs:
|
||||
clang-doc --format=md --output docs -p . $$(git ls-files '*.h')
|
||||
mkdir -p ../docs/libs/libprocess
|
||||
cp ./docs/GlobalNamespace/*.md ../docs/libs/libprocess
|
||||
|
||||
.PHONY: all clean format
|
||||
|
||||
2
libstring/.gitignore
vendored
2
libstring/.gitignore
vendored
@@ -1 +1,3 @@
|
||||
*.o
|
||||
*.json
|
||||
docs/
|
||||
|
||||
@@ -25,4 +25,9 @@ clean:
|
||||
format:
|
||||
clang-format -i $$(git ls-files '*.c' '*.h')
|
||||
|
||||
docs:
|
||||
clang-doc --format=md --output docs -p . $$(git ls-files '*.h')
|
||||
mkdir -o ../docs/libs/libstring
|
||||
cp ./docs/GlobalNamespace/*.md ../docs/libs/libstring
|
||||
|
||||
.PHONY: all clean format
|
||||
|
||||
2
libterminal/.gitignore
vendored
2
libterminal/.gitignore
vendored
@@ -1 +1,3 @@
|
||||
*.o
|
||||
*.json
|
||||
docs/
|
||||
|
||||
@@ -25,4 +25,9 @@ clean:
|
||||
format:
|
||||
clang-format -i $$(git ls-files '*.c' '*.h')
|
||||
|
||||
docs:
|
||||
clang-doc --format=md --output docs -p . $$(git ls-files '*.h')
|
||||
mkdir -p ../docs/libs/libterminal
|
||||
cp ./docs/GlobalNamespace/*.md ../docs/libs/libterminal
|
||||
|
||||
.PHONY: all clean format
|
||||
|
||||
@@ -1,4 +0,0 @@
|
||||
docs:
|
||||
mkdocs build
|
||||
|
||||
.PHONY: docs
|
||||
@@ -1,10 +1,16 @@
|
||||
all_liballoc:
|
||||
make -C liballoc platform=$(platform) all
|
||||
|
||||
all_compiledb_liballoc:
|
||||
bear --output liballoc/compile_commands.json -- make -C liballoc platform=$(platform) all
|
||||
|
||||
clean_liballoc:
|
||||
make -C liballoc platform=$(platform) clean
|
||||
|
||||
format_liballoc:
|
||||
make -C liballoc platform=$(platform) format
|
||||
|
||||
.PHONY: all_liballoc clean_liballoc format_liballoc
|
||||
docs_liballoc:
|
||||
make -C liballoc platform=$(platform) docs
|
||||
|
||||
.PHONY: all_liballoc clean_liballoc format_liballoc docs_liballoc
|
||||
|
||||
@@ -1,10 +1,16 @@
|
||||
all_libmsl:
|
||||
make -C libmsl platform=$(platform) all
|
||||
|
||||
all_compiledb_libmsl:
|
||||
bear --output libmsl/compile_commands.json -- make -C libmsl platform=$(platform) all
|
||||
|
||||
clean_libmsl:
|
||||
make -C libmsl platform=$(platform) clean
|
||||
|
||||
format_libmsl:
|
||||
make -C libmsl platform=$(platform) format
|
||||
|
||||
.PHONY: all_libmsl clean_libmsl format_libmsl
|
||||
docs_libmsl:
|
||||
make -C libmsl platform=$(platform) docs
|
||||
|
||||
.PHONY: all_libmsl clean_libmsl format_libmsl docs_libmsl
|
||||
|
||||
@@ -1,10 +1,16 @@
|
||||
all_libprocess:
|
||||
make -C libprocess platform=$(platform) all
|
||||
|
||||
all_compiledb_libprocess:
|
||||
bear --output libprocess/compile_commands.json -- make -C libprocess platform=$(platform) all
|
||||
|
||||
clean_libprocess:
|
||||
make -C libprocess platform=$(platform) clean
|
||||
|
||||
format_libprocess:
|
||||
make -C libprocess platform=$(platform) format
|
||||
|
||||
.PHONY: all_libprocess clean_libprocess format_libprocess
|
||||
docs_libprocess:
|
||||
make -C libprocess platform=$(platform) docs
|
||||
|
||||
.PHONY: all_libprocess clean_libprocess format_libprocess docs_libprocess
|
||||
|
||||
@@ -1,10 +1,16 @@
|
||||
all_libstring:
|
||||
make -C libstring platform=$(platform) all
|
||||
|
||||
all_compiledb_libstring:
|
||||
bear --output libstring/compile_commands.json -- make -C libstring platform=$(platform) all
|
||||
|
||||
clean_libstring:
|
||||
make -C libstring platform=$(platform) clean
|
||||
|
||||
format_libstring:
|
||||
make -C libstring platform=$(platform) format
|
||||
|
||||
.PHONY: all_libstring clean_libstring format_libstring
|
||||
docs_libstring:
|
||||
make -C libstring platform=$(platform) docs
|
||||
|
||||
.PHONY: all_libstring clean_libstring format_libstring docs_libstring
|
||||
|
||||
@@ -1,10 +1,16 @@
|
||||
all_libterminal:
|
||||
make -C libterminal platform=$(platform) all
|
||||
|
||||
all_compiledb_libterminal:
|
||||
bear --output libterminal/compile_commands.json -- make -C libterminal platform=$(platform) all
|
||||
|
||||
clean_libterminal:
|
||||
make -C libterminal platform=$(platform) clean
|
||||
|
||||
format_libterminal:
|
||||
make -C libterminal platform=$(platform) format
|
||||
|
||||
.PHONY: all_libterminal clean_libterminal format_libterminal
|
||||
docs_libterminal:
|
||||
make -C libterminal platform=$(platform) docs
|
||||
|
||||
.PHONY: all_libterminal clean_libterminal format_libterminal docs_libterminal
|
||||
|
||||
Reference in New Issue
Block a user