diff options
author | Jens Axboe <axboe@kernel.dk> | 2020-10-09 22:35:34 +0200 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2020-12-12 17:17:34 +0100 |
commit | 6d665a4d8b4264def0fbb72da3a500d9904ffe3e (patch) | |
tree | c53ccdf9b6202214fc45820b5c1846253607bbad /arch/c6x/include/asm | |
parent | alpha: add support for TIF_NOTIFY_SIGNAL (diff) | |
download | linux-6d665a4d8b4264def0fbb72da3a500d9904ffe3e.tar.xz linux-6d665a4d8b4264def0fbb72da3a500d9904ffe3e.zip |
c6x: add support for TIF_NOTIFY_SIGNAL
Wire up TIF_NOTIFY_SIGNAL handling for c6x.
Cc: linux-c6x-dev@linux-c6x.org
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'arch/c6x/include/asm')
-rw-r--r-- | arch/c6x/include/asm/thread_info.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/c6x/include/asm/thread_info.h b/arch/c6x/include/asm/thread_info.h index f70382844b96..dd8913d57189 100644 --- a/arch/c6x/include/asm/thread_info.h +++ b/arch/c6x/include/asm/thread_info.h @@ -82,6 +82,7 @@ struct thread_info *current_thread_info(void) #define TIF_SIGPENDING 2 /* signal pending */ #define TIF_NEED_RESCHED 3 /* rescheduling necessary */ #define TIF_RESTORE_SIGMASK 4 /* restore signal mask in do_signal() */ +#define TIF_NOTIFY_SIGNAL 5 /* signal notifications exist */ #define TIF_MEMDIE 17 /* OOM killer killed process */ |