2000-03-17 03:17:59 +01:00
|
|
|
#include <dlfcn.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <error.h>
|
2000-08-15 10:23:49 +02:00
|
|
|
#include <mcheck.h>
|
2000-08-19 10:30:28 +02:00
|
|
|
#include <stdio.h>
|
2000-03-17 03:17:59 +01:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
int
|
|
|
|
main (void)
|
|
|
|
{
|
|
|
|
int (*foo) (void);
|
|
|
|
void *h;
|
|
|
|
int ret;
|
|
|
|
|
2000-08-15 10:23:49 +02:00
|
|
|
mtrace ();
|
|
|
|
|
2000-03-17 03:17:59 +01:00
|
|
|
h = dlopen ("constload2.so", RTLD_LAZY | RTLD_GLOBAL);
|
|
|
|
if (h == NULL)
|
|
|
|
error (EXIT_FAILURE, errno, "cannot load module \"constload2.so\"");
|
|
|
|
foo = dlsym (h, "foo");
|
|
|
|
ret = foo ();
|
2000-08-19 09:17:09 +02:00
|
|
|
/* Note that the following dlclose() call cannot unload the objects.
|
|
|
|
Due to the introduced relocation dependency constload2.so depends
|
|
|
|
on constload3.so and the dependencies of constload2.so on constload3.so
|
|
|
|
is not visible to ld.so since it's done using dlopen(). */
|
2000-08-15 10:23:49 +02:00
|
|
|
if (dlclose (h) != 0)
|
|
|
|
{
|
|
|
|
puts ("failed to close");
|
|
|
|
exit (EXIT_FAILURE);
|
|
|
|
}
|
2000-03-17 03:17:59 +01:00
|
|
|
return ret;
|
|
|
|
}
|