mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-10 07:10:06 +00:00
3d91edb219
1999-01-20 Ulrich Drepper <drepper@cygnus.com> * elf/Makefile (tests): Add preloadtest. Add rules to build more test modules and the preloadtest binary. * elf/loadtest.c (TEST_ROUNDS): Increase to 1000. (testobjs): Add more modules. (tests): Add entries for new modules. * elf/preloadtest.c: New file. Test for LD_PRELOAD. * elf/testobj1.c: Add 'preload' function. * elf/testobj2.c: Likewise. * elf/testobj3.c: Likewise. * elf/testobj4.c: New file. * elf/testobj5.c: New file. * elf/testobj6.c: New file.
23 lines
264 B
C
23 lines
264 B
C
#include <dlfcn.h>
|
|
|
|
int
|
|
obj1func1 (int a __attribute__ ((unused)))
|
|
{
|
|
return 42;
|
|
}
|
|
|
|
int
|
|
obj1func2 (int a)
|
|
{
|
|
return foo (a) + 10;
|
|
}
|
|
|
|
int
|
|
preload (int a)
|
|
{
|
|
int (*fp) (int) = dlsym (RTLD_NEXT, "preload");
|
|
if (fp != NULL)
|
|
return fp (a) + 10;
|
|
return 10;
|
|
}
|