mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-28 00:21:52 +03:00
Update.
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.
This commit is contained in:
22
elf/testobj5.c
Normal file
22
elf/testobj5.c
Normal file
@ -0,0 +1,22 @@
|
||||
#include <dlfcn.h>
|
||||
|
||||
int
|
||||
obj5func1 (int a __attribute__ ((unused)))
|
||||
{
|
||||
return 66;
|
||||
}
|
||||
|
||||
int
|
||||
obj5func2 (int a)
|
||||
{
|
||||
return foo (a) + 44;
|
||||
}
|
||||
|
||||
int
|
||||
preload (int a)
|
||||
{
|
||||
int (*fp) (int) = dlsym (RTLD_NEXT, "preload");
|
||||
if (fp != NULL)
|
||||
return fp (a) + 10;
|
||||
return 10;
|
||||
}
|
Reference in New Issue
Block a user