1/*
2 * Copyright 2004-2009, Axel D��rfler, axeld@pinc-software.de.
3 * Distributed under the terms of the MIT License.
4 */
5#ifndef LIBROOT_PRIVATE_H
6#define LIBROOT_PRIVATE_H
7
8
9#include <SupportDefs.h>
10#include <image.h>
11
12
13struct user_space_program_args;
14struct real_time_data;
15
16
17#ifdef __cplusplus
18extern "C" {
19#endif
20
21extern int __gABIVersion;
22extern int __gAPIVersion;
23
24extern char _single_threaded;
25	/* This determines if a process runs single threaded or not */
26
27status_t __look_up_in_path(const char *name, char *buffer);
28status_t __parse_invoke_line(char *invoker, char ***_newArgs,
29			char * const **_oldArgs, int32 *_argCount, const char *arg0);
30status_t __get_next_image_dependency(image_id id, uint32 *cookie,
31			const char **_name);
32status_t __test_executable(const char *path, char *invoker);
33status_t __flatten_process_args(const char* const* args, int32 argCount,
34			const char* const* env, int32* envCount, const char* executablePath,
35			char*** _flatArgs, size_t* _flatSize);
36thread_id __load_image_at_path(const char* path, int32 argCount,
37			const char **args, const char **environ);
38void _call_atexit_hooks_for_range(addr_t start, addr_t size);
39void __init_env(const struct user_space_program_args *args);
40void __init_env_post_heap(void);
41status_t __init_heap(void);
42void __heap_terminate_after(void);
43void __heap_before_fork(void);
44void __heap_after_fork_child(void);
45void __heap_after_fork_parent(void);
46void __heap_thread_init(void);
47void __heap_thread_exit(void);
48
49void __init_time(addr_t commPageTable);
50void __arch_init_time(struct real_time_data *data, bool setDefaults);
51bigtime_t __arch_get_system_time_offset(struct real_time_data *data);
52bigtime_t __get_system_time_offset();
53void __init_pwd_backend(void);
54void __reinit_pwd_backend_after_fork(void);
55int32 __arch_get_stack_trace(addr_t* returnAddresses, int32 maxCount,
56	int32 skipFrames, addr_t stackBase, addr_t stackEnd);
57
58void __init_stack_protector(void);
59void __set_stack_protection(void);
60
61
62#ifdef __cplusplus
63}
64#endif
65
66#endif	/* LIBROOT_PRIVATE_H */
67