blob: d7a0a9215ee8ba6350d0ab7a2fd83dc215d80065 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef _PPC_CURRENT_H
#define _PPC_CURRENT_H
#include <linux/config.h>
extern struct task_struct *current_set[1];
register struct task_struct *current asm("r2");
#endif /* !(_PPC_CURRENT_H) */
|