README: Update luna/ links to point to libluna/

This commit is contained in:
apio 2023-03-11 10:37:38 +01:00
parent dcf4444d0d
commit 28028d229f
Signed by: apio
GPG Key ID: B8A7D06E42258954

View File

@ -8,10 +8,10 @@ A simple kernel and userspace for desktop computers, written mostly in C++ and C
- Can [load ELF programs](kernel/src/ELF.cpp) from the file system as userspace tasks.
- [System call](kernel/src/sys/) interface and [C Library](libc/), aiming to be mostly POSIX-compatible.
- Designed to be [portable](kernel/src/arch), no need to be restricted to x86_64.
- Fully [UTF-8 aware](luna/include/luna/Utf8.h), **everywhere**.
- [Thread](luna/include/luna/Atomic.h) [safety](kernel/src/thread/Spinlock.h) (supposedly).
- Environment-agnostic [utility library](luna/), which can be used in both kernel and userspace.
- Return-oriented [error propagation](luna/include/luna/Result.h), inspired by Rust and SerenityOS.
- Fully [UTF-8 aware](libluna/include/luna/Utf8.h), **everywhere**.
- [Thread](libluna/include/luna/Atomic.h) [safety](kernel/src/thread/Spinlock.h) (supposedly).
- Environment-agnostic [utility library](libluna/), which can be used in both kernel and userspace.
- Return-oriented [error propagation](libluna/include/luna/Result.h), inspired by Rust and SerenityOS.
- Build system uses [CMake](CMakeLists.txt).
## Setup