mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 10:40:15 +02:00 
			
		
		
		
	There was a #ifdef SA_RESTORER to guard the sa_restorer field
in struct sigaction.
Commit 8a1ab3155c ("UAPI: (Scripted) Disintegrate
include/asm-generic") moved that struct into
uapi/asm-generic/signal.h but the #ifdef SA_RESTORER remained.
Remove it.
Signed-off-by: Christophe Leroy <christophe.leroy@csgroup.eu>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
		
	
			
		
			
				
	
	
		
			13 lines
		
	
	
	
		
			282 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			282 B
		
	
	
	
		
			C
		
	
	
	
	
	
/* SPDX-License-Identifier: GPL-2.0 */
 | 
						|
#ifndef __ASM_GENERIC_SIGNAL_H
 | 
						|
#define __ASM_GENERIC_SIGNAL_H
 | 
						|
 | 
						|
#include <uapi/asm-generic/signal.h>
 | 
						|
 | 
						|
#ifndef __ASSEMBLY__
 | 
						|
 | 
						|
#include <asm/sigcontext.h>
 | 
						|
#undef __HAVE_ARCH_SIG_BITOPS
 | 
						|
 | 
						|
#endif /* __ASSEMBLY__ */
 | 
						|
#endif /* _ASM_GENERIC_SIGNAL_H */
 |