2003-01-12 19:37:40 +03:00
|
|
|
/*
|
2005-03-14 03:53:59 +03:00
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2003-01-12 19:37:40 +03:00
|
|
|
|
|
|
|
#include "rld_priv.h"
|
|
|
|
|
|
|
|
|
|
|
|
// exported via the rld_export structure in user space program arguments
|
|
|
|
|
|
|
|
|
|
|
|
static image_id
|
|
|
|
export_load_add_on(char const *name, uint32 flags)
|
|
|
|
{
|
2005-03-12 03:00:04 +03:00
|
|
|
return load_library(name, flags, true);
|
2003-01-12 19:37:40 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static status_t
|
|
|
|
export_unload_add_on(image_id id)
|
|
|
|
{
|
2005-03-12 03:00:04 +03:00
|
|
|
return unload_library(id, true);
|
2003-01-12 19:37:40 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static status_t
|
|
|
|
export_get_image_symbol(image_id id, char const *symbolName, int32 symbolType, void **_location)
|
|
|
|
{
|
|
|
|
return get_symbol(id, symbolName, symbolType, _location);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static status_t
|
|
|
|
export_get_nth_image_symbol(image_id id, int32 num, char *nameBuffer, int32 *_nameLength,
|
|
|
|
int32 *_symbolType, void **_location)
|
|
|
|
{
|
|
|
|
return get_nth_symbol(id, num, nameBuffer, _nameLength, _symbolType, _location);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
rldexport_init(struct uspace_program_args *args)
|
|
|
|
{
|
|
|
|
static struct rld_export exports = {
|
|
|
|
// dynamic loading support API
|
|
|
|
export_load_add_on,
|
|
|
|
export_unload_add_on,
|
|
|
|
export_get_image_symbol,
|
|
|
|
export_get_nth_image_symbol
|
|
|
|
};
|
|
|
|
|
|
|
|
args->rld_export = &exports;
|
|
|
|
}
|