add some functions related to migration into kernel/process.h

... and also add include guard to arch/x86/kernel/include/signal.h
This commit is contained in:
YOSHIDA Masanori
2014-06-25 17:25:47 +09:00
committed by Masamichi Takagi
parent 170a54d976
commit 3751fa1766
3 changed files with 9 additions and 0 deletions

View File

@ -11,6 +11,9 @@
* 2012/02/11 bgerofi what kind of new features have been added
*/
#ifndef __HEADER_X86_COMMON_SIGNAL_H
#define __HEADER_X86_COMMON_SIGNAL_H
#define _NSIG 64
#define _NSIG_BPW 64
#define _NSIG_WORDS (_NSIG / _NSIG_BPW)
@ -149,3 +152,5 @@ typedef struct siginfo {
#define SIGSYS 31
#define SIGUNUSED 31
#define SIGRTMIN 32
#endif /*__HEADER_X86_COMMON_SIGNAL_H*/