Done as a script (well, a single "git mv" actually) on request from Yoshinori Sato as a way to avoid a huge diff. Requested-by: Yoshinori Sato <ysato@users.sourceforge.jp> Cc: Sam Ravnborg <sam@ravnborg.org> Cc: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
		
			
				
	
	
		
			12 lines
		
	
	
	
		
			249 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			249 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
#ifndef _H8300_UCONTEXT_H
 | 
						|
#define _H8300_UCONTEXT_H
 | 
						|
 | 
						|
struct ucontext {
 | 
						|
	unsigned long	  uc_flags;
 | 
						|
	struct ucontext  *uc_link;
 | 
						|
	stack_t		  uc_stack;
 | 
						|
	struct sigcontext uc_mcontext;
 | 
						|
	sigset_t	  uc_sigmask;	/* mask last for extensibility */
 | 
						|
};
 | 
						|
 | 
						|
#endif
 |