mirror of
https://gitlab.com/sortix/sortix.git
synced 2023-02-13 20:55:38 -05:00
64 lines
2.3 KiB
C++
64 lines
2.3 KiB
C++
/*******************************************************************************
|
|
|
|
Copyright(C) Jonas 'Sortie' Termansen 2011, 2012, 2013, 2014.
|
|
|
|
This file is part of the Sortix C Library.
|
|
|
|
The Sortix C Library 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.
|
|
|
|
The Sortix C Library 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 the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
init/init.cpp
|
|
Initializes the process by setting up the heap, signal handling, static
|
|
memory and other useful things.
|
|
|
|
*******************************************************************************/
|
|
|
|
#include <malloc.h>
|
|
#include <pthread.h>
|
|
#include <string.h>
|
|
|
|
extern "C" { char* program_invocation_name; }
|
|
extern "C" { char* program_invocation_short_name; }
|
|
|
|
extern "C" void init_stdio();
|
|
|
|
static char* find_last_elem(char* str)
|
|
{
|
|
size_t len = strlen(str);
|
|
for ( size_t i = len; i; i-- )
|
|
if ( str[i-1] == '/' )
|
|
return str + i;
|
|
return str;
|
|
}
|
|
|
|
extern "C" void initialize_standard_library(int argc, char* argv[])
|
|
{
|
|
// We got ourselves a little bootstrap problem. We'd like these variables to
|
|
// be available during early startup - however, we can't create a copy yet
|
|
// because the heap isn't initialized yet. Instead, we'll simply point at
|
|
// the original value - we're safe since argv[0] is not supposed to be
|
|
// modified until main is run. Once we heap is up, we'll strdup.
|
|
const char* argv0 = argc ? argv[0] : "";
|
|
program_invocation_name = (char*) argv0;
|
|
program_invocation_short_name = find_last_elem((char*) argv0);
|
|
|
|
// Initialize pthreads and stuff like thread-local storage.
|
|
pthread_initialize();
|
|
|
|
// Initialize stdio.
|
|
init_stdio();
|
|
|
|
// We can now create a copy of the program name variables safely.
|
|
program_invocation_name = strdup(program_invocation_name);
|
|
program_invocation_short_name = find_last_elem(program_invocation_name);
|
|
}
|