5 Copyright � 1995-2001, The AROS Development Team. All rights reserved.
8 Desc: Internal description of the ETask structure
12 # include <exec/tasks.h>
17 struct ETask iet_ETask
;
21 APTR iet_RT
; /* Structure for resource tracking */
22 APTR iet_Context
; /* Structure to store CPU registers */
23 APTR iet_acpd
; /* Structure to store shared clib's data */
24 APTR iet_startup
; /* Structure to store startup code stuff */
29 #define GetIntETask(task) ((struct IntETask *)(((struct Task *) \
30 (task))->tc_UnionETask.tc_ETask))
31 #define IntETask(etask) ((struct IntETask *)(etask))