Currently we use both struct siginfo and siginfo_t. Let's use struct siginfo internally to avoid ongoing compiler warning. We are allowed to do so because struct siginfo and siginfo_t are equivalent. Signed-off-by: Richard Weinberger <richard@nod.at>
		
			
				
	
	
		
			19 lines
		
	
	
	
		
			456 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
	
		
			456 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
/* 
 | 
						|
 * Copyright (C) 2002 Jeff Dike (jdike@karaya.com)
 | 
						|
 * Licensed under the GPL
 | 
						|
 */
 | 
						|
 | 
						|
#ifndef __FRAME_KERN_H_
 | 
						|
#define __FRAME_KERN_H_
 | 
						|
 | 
						|
extern int setup_signal_stack_sc(unsigned long stack_top, int sig,
 | 
						|
				 struct k_sigaction *ka,
 | 
						|
				 struct pt_regs *regs,
 | 
						|
				 sigset_t *mask);
 | 
						|
extern int setup_signal_stack_si(unsigned long stack_top, int sig,
 | 
						|
				 struct k_sigaction *ka,
 | 
						|
				 struct pt_regs *regs, struct siginfo *info,
 | 
						|
				 sigset_t *mask);
 | 
						|
 | 
						|
#endif
 | 
						|
 |