mirror of
				https://sourceware.org/git/glibc.git
				synced 2025-11-03 20:53:13 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			133 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			133 B
		
	
	
	
		
			C
		
	
	
	
	
	
#include <tls.h>
 | 
						|
 | 
						|
extern __thread int tlsvar __attribute__((tls_model("initial-exec")));
 | 
						|
 | 
						|
void *
 | 
						|
in_dso (void)
 | 
						|
{
 | 
						|
  return &tlsvar;
 | 
						|
}
 |