12 lines
290 B
C
12 lines
290 B
C
#ifndef __UM_THREAD_H
|
|
#define __UM_THREAD_H
|
|
|
|
#include <kern_constants.h>
|
|
|
|
#define TASK_DEBUGREGS(task) ((unsigned long *) &(((char *) (task))[HOST_TASK_DEBUGREGS]))
|
|
#ifdef UML_CONFIG_MODE_TT
|
|
#define TASK_EXTERN_PID(task) *((int *) &(((char *) (task))[HOST_TASK_EXTERN_PID]))
|
|
#endif
|
|
|
|
#endif
|