Loading...
1/*
2 * Copyright (C) 2000 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
3 * Licensed under the GPL
4 */
5
6#ifndef __UM_CURRENT_H
7#define __UM_CURRENT_H
8
9#include "linux/thread_info.h"
10
11#define current (current_thread_info()->task)
12
13#endif
1/* SPDX-License-Identifier: GPL-2.0 */
2#ifndef __ASM_CURRENT_H
3#define __ASM_CURRENT_H
4
5#include <linux/compiler.h>
6#include <linux/threads.h>
7
8#ifndef __ASSEMBLY__
9
10struct task_struct;
11extern struct task_struct *cpu_tasks[NR_CPUS];
12
13static __always_inline struct task_struct *get_current(void)
14{
15 return cpu_tasks[0];
16}
17
18
19#define current get_current()
20
21#endif /* __ASSEMBLY__ */
22
23#endif /* __ASM_CURRENT_H */