mirror of
https://github.com/torvalds/linux.git
synced 2024-12-26 21:02:19 +00:00
10 lines
227 B
C
10 lines
227 B
C
|
#ifndef __TASK_H
|
||
|
#define __TASK_H
|
||
|
|
||
|
#include <kern_constants.h>
|
||
|
|
||
|
#define TASK_REGS(task) ((union uml_pt_regs *) &(((char *) (task))[HOST_TASK_REGS]))
|
||
|
#define TASK_PID(task) *((int *) &(((char *) (task))[HOST_TASK_PID]))
|
||
|
|
||
|
#endif
|