5af32e7526
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@12359 a95241bf-73f2-0310-859d-f6bbb57e9c96
35 lines
1.0 KiB
C
35 lines
1.0 KiB
C
/*
|
|
* Copyright 2003-2005, Axel Dörfler, axeld@pinc-software.de.
|
|
* Distributed under the terms of the MIT License.
|
|
*
|
|
* Copyright 2002, Manuel J. Petit. All rights reserved.
|
|
* Distributed under the terms of the NewOS License.
|
|
*/
|
|
#ifndef RUN_TIME_LINKER_H
|
|
#define RUN_TIME_LINKER_H
|
|
|
|
|
|
#include <user_runtime.h>
|
|
|
|
|
|
int runtime_loader(void *arg);
|
|
|
|
status_t unload_program(image_id imageID);
|
|
image_id load_program(char const *path, void **entry);
|
|
status_t unload_library(image_id imageID, bool addOn);
|
|
image_id load_library(char const *path, uint32 flags, bool addOn);
|
|
status_t get_nth_symbol(image_id imageID, int32 num, char *nameBuffer, int32 *_nameLength,
|
|
int32 *_type, void **_location);
|
|
status_t get_symbol(image_id imageID, char const *symbolName, int32 symbolType,
|
|
void **_location);
|
|
|
|
void rldelf_init(struct uspace_program_args const *uspa);
|
|
void rldexport_init(struct uspace_program_args *uspa);
|
|
|
|
// RLD heap
|
|
void rldheap_init(void);
|
|
void *rldalloc(size_t);
|
|
void rldfree(void *p);
|
|
|
|
#endif /* RUN_TIME_LINKER_H */
|