forked from ~ljy/RK356X_SDK_RELEASE

hc
2024-05-13 9d77db3c730780c8ef5ccd4b66403ff5675cfe4e
kernel/arch/microblaze/include/asm/thread_info.h
....@@ -1,9 +1,6 @@
1
+/* SPDX-License-Identifier: GPL-2.0 */
12 /*
23 * 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.
74 */
85
96 #ifndef _ASM_MICROBLAZE_THREAD_INFO_H
....@@ -110,6 +107,7 @@
110107 #define TIF_NEED_RESCHED 3 /* rescheduling necessary */
111108 /* restore singlestep on return to user mode */
112109 #define TIF_SINGLESTEP 4
110
+#define TIF_NOTIFY_SIGNAL 5 /* signal notifications exist */
113111 #define TIF_MEMDIE 6 /* is terminating due to OOM killer */
114112 #define TIF_SYSCALL_AUDIT 9 /* syscall auditing active */
115113 #define TIF_SECCOMP 10 /* secure computing */
....@@ -122,6 +120,7 @@
122120 #define _TIF_SIGPENDING (1 << TIF_SIGPENDING)
123121 #define _TIF_NEED_RESCHED (1 << TIF_NEED_RESCHED)
124122 #define _TIF_SINGLESTEP (1 << TIF_SINGLESTEP)
123
+#define _TIF_NOTIFY_SIGNAL (1 << TIF_NOTIFY_SIGNAL)
125124 #define _TIF_POLLING_NRFLAG (1 << TIF_POLLING_NRFLAG)
126125 #define _TIF_SYSCALL_AUDIT (1 << TIF_SYSCALL_AUDIT)
127126 #define _TIF_SECCOMP (1 << TIF_SECCOMP)