diff options
author | David S. Miller <davem@davemloft.net> | 2005-07-10 16:49:28 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2005-07-10 16:49:28 -0700 |
commit | bb49bcda15f1bc1a52c7f887db278447f332eaa7 (patch) | |
tree | dec754638f3cbc4123e715c42573648859e20735 /include/asm-sparc64 | |
parent | af166d15c3ad4d501a0c4fb5b4547bb2ba205918 (diff) | |
download | linux-3.10-bb49bcda15f1bc1a52c7f887db278447f332eaa7.tar.gz linux-3.10-bb49bcda15f1bc1a52c7f887db278447f332eaa7.tar.bz2 linux-3.10-bb49bcda15f1bc1a52c7f887db278447f332eaa7.zip |
[SPARC64]: Add SECCOMP support.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/asm-sparc64')
-rw-r--r-- | include/asm-sparc64/thread_info.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/asm-sparc64/thread_info.h b/include/asm-sparc64/thread_info.h index 0cd65295692..6b2fbb89bb6 100644 --- a/include/asm-sparc64/thread_info.h +++ b/include/asm-sparc64/thread_info.h @@ -220,7 +220,7 @@ register struct thread_info *current_thread_info_reg asm("g6"); #define TIF_NEWSIGNALS 6 /* wants new-style signals */ #define TIF_32BIT 7 /* 32-bit binary */ #define TIF_NEWCHILD 8 /* just-spawned child process */ -/* TIF_* value 9 is available */ +#define TIF_SECCOMP 9 /* secure computing */ #define TIF_POLLING_NRFLAG 10 #define TIF_SYSCALL_SUCCESS 11 /* NOTE: Thread flags >= 12 should be ones we have no interest @@ -239,6 +239,7 @@ register struct thread_info *current_thread_info_reg asm("g6"); #define _TIF_NEWSIGNALS (1<<TIF_NEWSIGNALS) #define _TIF_32BIT (1<<TIF_32BIT) #define _TIF_NEWCHILD (1<<TIF_NEWCHILD) +#define _TIF_SECCOMP (1<<TIF_SECCOMP) #define _TIF_POLLING_NRFLAG (1<<TIF_POLLING_NRFLAG) #define _TIF_ABI_PENDING (1<<TIF_ABI_PENDING) #define _TIF_SYSCALL_SUCCESS (1<<TIF_SYSCALL_SUCCESS) |