|  | @@ -43,6 +43,17 @@ SH_PTHREAD_EXCLUDE_LIST = pthread_spin_unlock.c pthread_spin_init.c \
 | 
	
		
			
				|  |  |  libpthread_CSRC := $(filter-out $(SH_PTHREAD_EXCLUDE_LIST),$(libpthread_CSRC))
 | 
	
		
			
				|  |  |  endif
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | +ifeq ($(TARGET_ARCH),x86_64)
 | 
	
		
			
				|  |  | +X64_PTHREAD_EXCLUDE_LIST = pthread_spin_unlock.c pthread_spin_init.c \
 | 
	
		
			
				|  |  | +		pthread_barrier_wait.c pthread_cond_broadcast.c	\
 | 
	
		
			
				|  |  | +		pthread_cond_signal.c pthread_rwlock_timedrdlock.c	\
 | 
	
		
			
				|  |  | +		pthread_rwlock_timedwrlock.c pthread_rwlock_unlock.c pthread_rwlock_wrlock.c \
 | 
	
		
			
				|  |  | +		pthread_rwlock_rdlock.c pthread_cond_timedwait.c
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +libpthread_CSRC := $(filter-out $(X64_PTHREAD_EXCLUDE_LIST),$(libpthread_CSRC))
 | 
	
		
			
				|  |  | +endif
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  CFLAGS-pt-common = -DNOT_IN_libc=1 $(SSP_ALL_CFLAGS)
 | 
	
		
			
				|  |  |  
 |