2004-11-18 06:08:36 +03:00
|
|
|
/*
|
2005-02-02 07:36:16 +03:00
|
|
|
* Copyright 2003-2005, Axel Dörfler, axeld@pinc-software.de.
|
2004-11-18 06:08:36 +03:00
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*/
|
2002-10-05 21:04:37 +04:00
|
|
|
|
2003-01-13 13:50:14 +03:00
|
|
|
|
2004-10-12 20:35:02 +04:00
|
|
|
#include <libroot_private.h>
|
2002-10-05 21:04:37 +04:00
|
|
|
#include <user_runtime.h>
|
2004-10-12 20:35:02 +04:00
|
|
|
#include <fork.h>
|
2002-10-05 21:04:37 +04:00
|
|
|
|
2004-10-12 20:35:02 +04:00
|
|
|
#include <string.h>
|
2002-10-05 21:04:37 +04:00
|
|
|
|
|
|
|
|
2003-01-12 20:13:32 +03:00
|
|
|
void initialize_before(image_id imageID, struct uspace_program_args const *args);
|
|
|
|
|
2003-01-13 13:50:14 +03:00
|
|
|
char *__progname = NULL;
|
2005-02-02 07:36:16 +03:00
|
|
|
int __libc_argc;
|
|
|
|
char **__libc_argv;
|
2003-01-13 13:50:14 +03:00
|
|
|
|
2003-02-11 22:51:49 +03:00
|
|
|
char _single_threaded = true;
|
|
|
|
// determines if I/O locking needed; needed for BeOS compatibility
|
2004-07-05 22:47:54 +04:00
|
|
|
|
2003-01-13 13:50:14 +03:00
|
|
|
thread_id __main_thread_id;
|
|
|
|
char **argv_save;
|
2004-07-05 22:47:54 +04:00
|
|
|
// needed for BeOS compatibility - they are set in the startup code
|
|
|
|
// (have a look at the glue/ directory)
|
2003-01-13 13:50:14 +03:00
|
|
|
|
2005-03-23 16:22:42 +03:00
|
|
|
int _data_offset_main_;
|
|
|
|
// this is obviously needed for R4.5 compatiblity
|
|
|
|
|
2003-01-13 13:50:14 +03:00
|
|
|
|
2002-10-05 21:04:37 +04:00
|
|
|
void
|
2003-01-12 20:13:32 +03:00
|
|
|
initialize_before(image_id imageID, struct uspace_program_args const *args)
|
2002-10-05 21:04:37 +04:00
|
|
|
{
|
2003-01-13 13:50:14 +03:00
|
|
|
char *programPath = args->argv[0];
|
|
|
|
if (programPath) {
|
|
|
|
if ((__progname = strrchr(programPath, '/')) == NULL)
|
|
|
|
__progname = programPath;
|
|
|
|
else
|
|
|
|
__progname++;
|
|
|
|
}
|
|
|
|
|
2005-02-02 07:36:16 +03:00
|
|
|
__libc_argc = args->argc;
|
|
|
|
__libc_argv = args->argv;
|
|
|
|
|
2004-11-18 06:08:36 +03:00
|
|
|
__init_time();
|
2004-10-12 20:35:02 +04:00
|
|
|
__init_image(args);
|
|
|
|
__init_dlfcn(args);
|
|
|
|
__init_fork();
|
2005-03-23 04:47:21 +03:00
|
|
|
__init_heap();
|
2005-03-11 01:54:31 +03:00
|
|
|
__init_env(args);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-01-13 13:50:14 +03:00
|
|
|
void _init_c_library_(void);
|
|
|
|
void
|
|
|
|
_init_c_library_(void)
|
|
|
|
{
|
|
|
|
// This function is called from the BeOS start_dyn.o - so it's called once
|
|
|
|
// for every application that was compiled under BeOS.
|
|
|
|
// Our libroot functions are already initialized above, so we don't have to
|
|
|
|
// do anything here.
|
2002-10-05 21:04:37 +04:00
|
|
|
}
|
|
|
|
|