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,44 @@
#include <bits/ensure.h>
#include <errno.h>
#include <signal.h>
#include <mlibc/debug.hpp>
#include <mlibc/ansi-sysdeps.hpp>
__sighandler signal(int sn, __sighandler handler) {
struct sigaction sa;
sa.sa_handler = handler;
sa.sa_flags = 0;
sigemptyset(&sa.sa_mask);
struct sigaction old;
MLIBC_CHECK_OR_ENOSYS(mlibc::sys_sigaction, SIG_ERR);
if(int e = mlibc::sys_sigaction(sn, &sa, &old)){
errno = e;
return SIG_ERR;
}
return old.sa_handler;
}
int raise(int sig) {
MLIBC_CHECK_OR_ENOSYS(mlibc::sys_getpid && mlibc::sys_kill, -1);
pid_t pid = mlibc::sys_getpid();
if (int e = mlibc::sys_kill(pid, sig)) {
errno = e;
return -1;
}
return 0;
}
// This is a POSIX extension, but we have it in here for sigsetjmp
int sigprocmask(int how, const sigset_t *__restrict set, sigset_t *__restrict retrieve) {
MLIBC_CHECK_OR_ENOSYS(mlibc::sys_sigprocmask, -1);
if(int e = mlibc::sys_sigprocmask(how, set, retrieve); e) {
errno = e;
return -1;
}
return 0;
}