13 lines
284 B
C
Raw Normal View History

2026-01-21 18:59:54 +08:00
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef __ASM_GENERIC_CURRENT_H
#define __ASM_GENERIC_CURRENT_H
2026-01-29 22:25:33 +08:00
#ifndef __ASSEMBLY__
2026-01-21 18:59:54 +08:00
#include <linux/thread_info.h>
#define get_current() (current_thread_info()->task)
#define current get_current()
2026-01-29 22:25:33 +08:00
#endif
2026-01-21 18:59:54 +08:00
#endif /* __ASM_GENERIC_CURRENT_H */