2017-11-01 15:07:57 +01:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
2009-05-13 22:56:33 +00:00
|
|
|
#ifndef __ASM_GENERIC_CURRENT_H
|
|
|
|
|
#define __ASM_GENERIC_CURRENT_H
|
|
|
|
|
|
2023-07-04 16:30:21 +08:00
|
|
|
#ifndef __ASSEMBLY__
|
2009-05-13 22:56:33 +00:00
|
|
|
#include <linux/thread_info.h>
|
|
|
|
|
|
|
|
|
|
#define get_current() (current_thread_info()->task)
|
|
|
|
|
#define current get_current()
|
2023-07-04 16:30:21 +08:00
|
|
|
#endif
|
2009-05-13 22:56:33 +00:00
|
|
|
|
|
|
|
|
#endif /* __ASM_GENERIC_CURRENT_H */
|