Skip to content
Permalink
3fac000158
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
53 lines (43 sloc) 961 Bytes
#include <dlfcn.h>
#include <mcheck.h>
#include <stdio.h>
#include <stdlib.h>
int
main (void)
{
void *p1;
void *p2;
int (*fp) (void);
int result;
mtrace ();
p1 = dlopen ("dblloadmod1.so", RTLD_LAZY);
if (p1 == NULL)
{
printf ("cannot open dblloadmod1.so: %s\n", dlerror ());
exit (EXIT_FAILURE);
}
p2 = dlopen ("dblloadmod2.so", RTLD_LAZY);
if (p1 == NULL)
{
printf ("cannot open dblloadmod2.so: %s\n", dlerror ());
exit (EXIT_FAILURE);
}
fp = dlsym (p1, "foo");
if (fp == NULL)
{
printf ("cannot get function \"foo\": %s\n", dlerror ());
exit (EXIT_FAILURE);
}
result = fp ();
if (dlclose (p1) != 0)
{
printf ("error while closing dblloadmod1.so: %s\n", dlerror ());
exit (EXIT_FAILURE);
}
if (dlclose (p2) != 0)
{
printf ("error while closing dblloadmod2.so: %s\n", dlerror ());
exit (EXIT_FAILURE);
}
return result;
}