mirror of
				https://sourceware.org/git/glibc.git
				synced 2025-10-30 10:45:40 +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;
 | |
| }
 |