mirror of
				https://sourceware.org/git/glibc.git
				synced 2025-11-03 20:53:13 +03:00 
			
		
		
		
	* elf/neededobj1.c: Likewise. * elf/neededobj2.c: Likewise. * elf/neededobj3.c: Likewise. * elf/neededobj4.c: Likewise. * elf/nextmod1.c: Likewise. * elf/nextmod2.c: Likewise.
		
			
				
	
	
		
			31 lines
		
	
	
		
			567 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			567 B
		
	
	
	
		
			C
		
	
	
	
	
	
#include <dlfcn.h>
 | 
						|
 | 
						|
extern int successful_rtld_next_test (void);
 | 
						|
extern void *failing_rtld_next_use (void);
 | 
						|
 | 
						|
int nextmod1_dummy_var;
 | 
						|
 | 
						|
int
 | 
						|
successful_rtld_next_test (void)
 | 
						|
{
 | 
						|
  int (*fp) (void);
 | 
						|
 | 
						|
  /* Get the next function... */
 | 
						|
  fp = (int (*) (void)) dlsym (RTLD_NEXT, __FUNCTION__);
 | 
						|
 | 
						|
  /* ...and simply call it.  */
 | 
						|
  return fp ();
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
void *
 | 
						|
failing_rtld_next_use (void)
 | 
						|
{
 | 
						|
  void *ret = dlsym (RTLD_NEXT, __FUNCTION__);
 | 
						|
 | 
						|
  /* Ensure we are not tail call optimized, because then RTLD_NEXT
 | 
						|
     might return this function.  */
 | 
						|
  ++nextmod1_dummy_var;
 | 
						|
  return ret;
 | 
						|
}
 |