mirror of
https://gitlab.com/sortix/sortix.git
synced 2023-02-13 20:55:38 -05:00
![Jonas 'Sortie' Termansen](/assets/img/avatar_default.png)
Made FILE an interface to various backends. This allows application writers to override the standard FILE API functions with their own backends. This is highly unportable - it'd be nice if a real standard existed for this. glibc already does something like this internally, but AFAIK you can't hook into it. Added fdopen(3), fopen(3), fregister(3), funregister(3), fread(3), fwrite(3), fseek(3), clearerr(3), ferror(3), feof(3), rewind(3), ftell(3), fflush(3), fclose(3), fileno(3), fnewline(3), fcloseall(3), memset(3), stdio(3), vfprintf(3), fprintf(3), and vprintf(3). Added a file-descriptor backend to the FILE API. fd's {0, 1, 2} are now initialized as stdin, stdout, and stderr when the standard library initializes. fcloseall(3) is now called on exit(3). decl/intn_t_.h now @include(size_t.h) instead of declaring it itself. Added <stdint.h>. The following programs now flush stdout: cat(1), clear(1), editor(1), init(1), mxsh(1). printf(3) is now hooked up against vprintf(3), while Maxsi::PrintF remains using the system call, for now.
91 lines
2.2 KiB
C++
91 lines
2.2 KiB
C++
/******************************************************************************
|
|
|
|
COPYRIGHT(C) JONAS 'SORTIE' TERMANSEN 2011.
|
|
|
|
This file is part of LibMaxsi.
|
|
|
|
LibMaxsi is free software: you can redistribute it and/or modify it under
|
|
the terms of the GNU Lesser General Public License as published by the Free
|
|
Software Foundation, either version 3 of the License, or (at your option)
|
|
any later version.
|
|
|
|
LibMaxsi is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for
|
|
more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
|
along with LibMaxsi. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
process.cpp
|
|
Exposes system calls for process creation and management.
|
|
|
|
******************************************************************************/
|
|
|
|
#include "platform.h"
|
|
#include "syscall.h"
|
|
#include "process.h"
|
|
#include <stdio.h>
|
|
|
|
namespace Maxsi
|
|
{
|
|
namespace Process
|
|
{
|
|
DEFN_SYSCALL1_VOID(SysExit, SYSCALL_EXIT, int);
|
|
DEFN_SYSCALL4(int, SysExecVE, SYSCALL_EXEC, const char*, int, char* const*, char* const*);
|
|
DEFN_SYSCALL0(pid_t, SysFork, SYSCALL_FORK);
|
|
DEFN_SYSCALL0(pid_t, SysGetPID, SYSCALL_GETPID);
|
|
DEFN_SYSCALL0(pid_t, SysGetParentPID, SYSCALL_GETPPID);
|
|
DEFN_SYSCALL3(pid_t, SysWait, SYSCALL_WAIT, pid_t, int*, int);
|
|
|
|
int Execute(const char* filepath, int argc, const char** argv)
|
|
{
|
|
return SysExecVE(filepath, argc, (char* const*) argv, NULL);
|
|
}
|
|
|
|
void Abort()
|
|
{
|
|
// TODO: Send SIGABRT instead!
|
|
Exit(128 + 6);
|
|
}
|
|
|
|
extern "C" void abort() { return Abort(); }
|
|
|
|
extern "C" void _exit(int status)
|
|
{
|
|
SysExit(status);
|
|
}
|
|
|
|
DUAL_FUNCTION(void, exit, Exit, (int status))
|
|
{
|
|
fcloseall();
|
|
_exit(status);
|
|
}
|
|
|
|
DUAL_FUNCTION(pid_t, fork, Fork, ())
|
|
{
|
|
return SysFork();
|
|
}
|
|
|
|
DUAL_FUNCTION(pid_t, getpid, GetPID, ())
|
|
{
|
|
return SysGetPID();
|
|
}
|
|
|
|
DUAL_FUNCTION(pid_t, getppid, GetParentPID, ())
|
|
{
|
|
return SysGetParentPID();
|
|
}
|
|
|
|
extern "C" pid_t waitpid(pid_t pid, int* status, int options)
|
|
{
|
|
return SysWait(pid, status, options);
|
|
}
|
|
|
|
extern "C" pid_t wait(int* status)
|
|
{
|
|
return waitpid(-1, status, 0);
|
|
}
|
|
}
|
|
}
|
|
|