| .. | .. |
|---|
| 1 | +/* SPDX-License-Identifier: GPL-2.0 */ |
|---|
| 1 | 2 | /* |
|---|
| 2 | 3 | * Copyright (C) 2006 Atmark Techno, Inc. |
|---|
| 3 | | - * |
|---|
| 4 | | - * This file is subject to the terms and conditions of the GNU General Public |
|---|
| 5 | | - * License. See the file "COPYING" in the main directory of this archive |
|---|
| 6 | | - * for more details. |
|---|
| 7 | 4 | */ |
|---|
| 8 | 5 | |
|---|
| 9 | 6 | #ifndef _ASM_MICROBLAZE_THREAD_INFO_H |
|---|
| .. | .. |
|---|
| 110 | 107 | #define TIF_NEED_RESCHED 3 /* rescheduling necessary */ |
|---|
| 111 | 108 | /* restore singlestep on return to user mode */ |
|---|
| 112 | 109 | #define TIF_SINGLESTEP 4 |
|---|
| 110 | +#define TIF_NOTIFY_SIGNAL 5 /* signal notifications exist */ |
|---|
| 113 | 111 | #define TIF_MEMDIE 6 /* is terminating due to OOM killer */ |
|---|
| 114 | 112 | #define TIF_SYSCALL_AUDIT 9 /* syscall auditing active */ |
|---|
| 115 | 113 | #define TIF_SECCOMP 10 /* secure computing */ |
|---|
| .. | .. |
|---|
| 122 | 120 | #define _TIF_SIGPENDING (1 << TIF_SIGPENDING) |
|---|
| 123 | 121 | #define _TIF_NEED_RESCHED (1 << TIF_NEED_RESCHED) |
|---|
| 124 | 122 | #define _TIF_SINGLESTEP (1 << TIF_SINGLESTEP) |
|---|
| 123 | +#define _TIF_NOTIFY_SIGNAL (1 << TIF_NOTIFY_SIGNAL) |
|---|
| 125 | 124 | #define _TIF_POLLING_NRFLAG (1 << TIF_POLLING_NRFLAG) |
|---|
| 126 | 125 | #define _TIF_SYSCALL_AUDIT (1 << TIF_SYSCALL_AUDIT) |
|---|
| 127 | 126 | #define _TIF_SECCOMP (1 << TIF_SECCOMP) |
|---|