xref: /haiku/headers/private/libroot/libroot_private.h (revision 5b189b0e1e2f51f367bfcb126b2f00a3702f352d)
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 
13 struct user_space_program_args;
14 struct real_time_data;
15 
16 
17 #ifdef __cplusplus
18 extern "C" {
19 #endif
20 
21 extern int __gABIVersion;
22 
23 extern char _single_threaded;
24 	/* This determines if a process runs single threaded or not */
25 
26 status_t __parse_invoke_line(char *invoker, char ***_newArgs,
27 			char * const **_oldArgs, int32 *_argCount, const char *arg0);
28 status_t __get_next_image_dependency(image_id id, uint32 *cookie,
29 			const char **_name);
30 status_t __test_executable(const char *path, char *invoker);
31 status_t __flatten_process_args(const char* const* args, int32 argCount,
32 			const char* const* env, int32* envCount, const char* executablePath,
33 			char*** _flatArgs, size_t* _flatSize);
34 void _call_atexit_hooks_for_range(addr_t start, addr_t size);
35 void __init_env(const struct user_space_program_args *args);
36 void __init_env_post_heap(void);
37 status_t __init_heap(void);
38 void __heap_terminate_after(void);
39 void __heap_before_fork(void);
40 void __heap_after_fork_child(void);
41 void __heap_after_fork_parent(void);
42 void __heap_thread_init(void);
43 void __heap_thread_exit(void);
44 
45 void __init_time(addr_t commPageTable);
46 void __arch_init_time(struct real_time_data *data, bool setDefaults);
47 bigtime_t __arch_get_system_time_offset(struct real_time_data *data);
48 bigtime_t __get_system_time_offset();
49 void __init_pwd_backend(void);
50 void __reinit_pwd_backend_after_fork(void);
51 void* __arch_get_caller(void);
52 int32 __arch_get_stack_trace(addr_t* returnAddresses, int32 maxCount,
53 	int32 skipFrames, addr_t stackBase, addr_t stackEnd);
54 
55 void __set_stack_protection(void);
56 
57 
58 #ifdef __cplusplus
59 }
60 #endif
61 
62 #endif	/* LIBROOT_PRIVATE_H */
63