user: implement mlibc as the libc, finally.

It's finally done..

Signed-off-by: kaguya <vpshinomiya@protonmail.com>
This commit is contained in:
kaguya
2026-05-02 03:31:49 -04:00
parent 2fa39ad85a
commit 9a9b91c940
2387 changed files with 152741 additions and 315 deletions
@@ -0,0 +1,37 @@
#include <assert.h>
#include <stdint.h>
#include <string.h>
#include <bits/ensure.h>
#include <mlibc/all-sysdeps.hpp>
#include <mlibc/debug.hpp>
#include <hel-syscalls.h>
#include <hel.h>
void __frigg_assert_fail(
const char *assertion, const char *file, unsigned int line, const char *function
) {
mlibc::panicLogger() << "In function " << function << ", file " << file << ":" << line << "\n"
<< "__ensure(" << assertion << ") failed" << frg::endlog;
}
namespace mlibc {
void sys_libc_log(const char *message) {
// This implementation is inherently signal-safe.
size_t n = 0;
while (message[n])
n++;
HEL_CHECK(helLog(kHelLogSeverityInfo, message, n));
}
void sys_libc_panic() {
// This implementation is inherently signal-safe.
const char *message = "mlibc: Panic!";
size_t n = 0;
while (message[n])
n++;
helPanic(message, n);
}
} // namespace mlibc