2000-03-17 03:17:59 +01:00
|
|
|
#include <dlfcn.h>
|
2000-08-15 10:23:49 +02:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2000-03-17 03:17:59 +01:00
|
|
|
|
|
|
|
extern int bar (void);
|
2000-12-15 17:03:57 +01:00
|
|
|
extern int baz (void);
|
|
|
|
extern int foo (void);
|
2001-01-21 18:15:50 +01:00
|
|
|
extern void __attribute__ ((__constructor__)) init (void);
|
2000-03-17 03:17:59 +01:00
|
|
|
|
|
|
|
void *h;
|
|
|
|
|
|
|
|
int
|
|
|
|
foo (void)
|
|
|
|
{
|
|
|
|
return 42 + bar ();
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
baz (void)
|
|
|
|
{
|
|
|
|
return -21;
|
|
|
|
}
|
|
|
|
|
2001-01-21 18:15:50 +01:00
|
|
|
|
2000-03-17 03:17:59 +01:00
|
|
|
void
|
|
|
|
__attribute__ ((__constructor__))
|
|
|
|
init (void)
|
|
|
|
{
|
|
|
|
h = dlopen ("constload3.so", RTLD_GLOBAL | RTLD_LAZY);
|
2000-08-15 10:23:49 +02:00
|
|
|
if (h == NULL)
|
|
|
|
{
|
|
|
|
puts ("failed to load constload3");
|
|
|
|
exit (1);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
puts ("succeeded loading constload3");
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
__attribute__ ((__destructor__))
|
|
|
|
fini (void)
|
|
|
|
{
|
|
|
|
if (dlclose (h) != 0)
|
|
|
|
{
|
|
|
|
puts ("failed to unload constload3");
|
|
|
|
exit (1);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
puts ("succeeded unloading constload3");
|
2000-03-17 03:17:59 +01:00
|
|
|
}
|