2011-09-14 12:11:52 -04:00
|
|
|
/******************************************************************************
|
|
|
|
|
|
|
|
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/>.
|
|
|
|
|
|
|
|
init.cpp
|
|
|
|
Initializes the process by setting up the heap, signal handling,
|
|
|
|
static memory and other useful things.
|
|
|
|
|
|
|
|
******************************************************************************/
|
|
|
|
|
2012-02-11 20:03:34 -05:00
|
|
|
#include <libmaxsi/platform.h>
|
|
|
|
#include <libmaxsi/signal.h>
|
|
|
|
#include <libmaxsi/string.h>
|
|
|
|
#include <libmaxsi/io.h>
|
|
|
|
#include <libmaxsi/memory.h>
|
2011-09-14 12:11:52 -04:00
|
|
|
|
|
|
|
namespace Maxsi
|
|
|
|
{
|
2011-11-26 05:00:45 -05:00
|
|
|
extern "C" { char program_invocation_name_data[256] = ""; }
|
|
|
|
extern "C" { char* program_invocation_name = program_invocation_name_data; }
|
|
|
|
|
2011-11-22 11:26:47 -05:00
|
|
|
extern "C" void init_error_functions();
|
Implemented large parts of the stdio(3), including fprintf.
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.
2011-12-23 22:08:10 -05:00
|
|
|
extern "C" void init_stdio();
|
2011-11-22 11:26:47 -05:00
|
|
|
|
2011-11-26 05:00:45 -05:00
|
|
|
extern "C" void initialize_standard_library(int argc, char* argv[])
|
2011-09-14 12:11:52 -04:00
|
|
|
{
|
2011-11-26 05:00:45 -05:00
|
|
|
if ( argc )
|
|
|
|
{
|
|
|
|
String::Copy(program_invocation_name, argv[0]);
|
|
|
|
}
|
|
|
|
|
2011-09-15 16:38:40 -04:00
|
|
|
// Initialize stuff such as errno.
|
2011-11-22 11:26:47 -05:00
|
|
|
init_error_functions();
|
2011-09-15 16:38:40 -04:00
|
|
|
|
|
|
|
// It's probably best to initialize the Unix signals early on.
|
|
|
|
Signal::Init();
|
2011-12-16 07:24:49 -05:00
|
|
|
|
|
|
|
// Initialize the dynamic heap.
|
|
|
|
Memory::Init();
|
Implemented large parts of the stdio(3), including fprintf.
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.
2011-12-23 22:08:10 -05:00
|
|
|
|
|
|
|
// Initialize stdio.
|
|
|
|
init_stdio();
|
2011-09-14 12:11:52 -04:00
|
|
|
}
|
|
|
|
}
|