fix off-by-1 screen title fill
[AROS.git] / rom / exec / exec_intern.h
blob12a457564237a8d208c8f65396ef355335e62769
1 /*
2 Copyright © 1995-2013, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: Private data belonging to exec.library
6 Lang:
7 */
8 #ifndef __EXEC_INTERN_H__
9 #define __EXEC_INTERN_H__
11 /* This is a short file that contains a few things every Exec function needs */
13 #include <aros/debug.h> /* Needed for aros_print_not_implemented macro */
14 #include <aros/system.h>
15 #include <aros/libcall.h>
16 #include <exec/execbase.h>
17 #include <proto/exec.h>
19 #include <exec_platform.h>
21 #define ALERT_BUFFER_SIZE 2048
23 /* Internals of this structure are host-specific, we don't know them here */
24 struct HostInterface;
26 struct SupervisorAlertTask
28 struct Task * sat_Task; /* Task that tries to display supervisor-level alerts */
29 BOOL sat_IsAvailable;
30 IPTR sat_Params[2];
33 /* A private portion of ExecBase */
34 struct IntExecBase
36 struct ExecBase pub;
37 struct List ResetHandlers; /* Reset handlers list */
38 struct Interrupt ColdResetHandler; /* Reset handler that causes cold reboot */
39 struct Interrupt WarmResetHandler; /* Reset handler that causes warm reboot */
40 struct Interrupt ShutdownHandler; /* Reset handler that halts CPU */
41 struct MinList AllocMemList; /* Mungwall allocations list */
42 struct SignalSemaphore MemListSem; /* Memory list protection semaphore */
43 struct SignalSemaphore LowMemSem; /* Lock for single-threading low memory handlers */
44 APTR KernelBase; /* kernel.resource base */
45 struct Library *DebugBase; /* debug.library base */
46 ULONG PageSize; /* Memory page size */
47 ULONG IntFlags; /* Internal flags, see below */
48 struct MsgPort *ServicePort; /* Message port for service task */
49 struct MinList TaskStorageSlots; /* List of free slots, always one element with next slot */
50 struct List AllocatorCtxList; /* List of allocator contexts for system mem headers */
51 struct Exec_PlatformData PlatformData; /* Platform-specific stuff */
52 struct SupervisorAlertTask SAT;
53 char AlertBuffer[ALERT_BUFFER_SIZE]; /* Buffer for alert text */
56 #define PrivExecBase(base) ((struct IntExecBase *)base)
57 #define PD(base) PrivExecBase(base)->PlatformData
58 #define KernelBase PrivExecBase(SysBase)->KernelBase
59 #define DebugBase PrivExecBase(SysBase)->DebugBase
61 /* IntFlags */
62 #define EXECF_MungWall 0x0001 /* This flag can't be changed at runtime */
63 #define EXECF_StackSnoop 0x0002
65 /* Additional private task states */
66 #define TS_SERVICE 128
68 /* Puddle size, in slots. Must be at least 1 */
69 #define TASKSTORAGEPUDDLE 16
71 #if UseLVOs
72 extern void __AROS_InitExecBase (void);
73 #endif
75 struct ExecBase *PrepareExecBase(struct MemHeader *mh, struct TagItem *tags);
76 void InitExecBase(struct ExecBase *SysBase, ULONG negsize, struct TagItem *msg);
77 struct ExecBase *PrepareExecBaseMove(struct ExecBase *oldSysBase);
78 BOOL Exec_PreparePlatform(struct Exec_PlatformData *pdata, struct TagItem *tags);
80 void InitKickTags(struct ExecBase *SysBase);
81 UWORD GetSysBaseChkSum(struct ExecBase *sysbase);
82 void SetSysBaseChkSum(void);
83 BOOL IsSysBaseValid(struct ExecBase *sysbase);
85 IPTR cpu_SuperState();
87 void ServiceTask(struct ExecBase *SysBase);
89 #endif /* __EXEC_INTERN_H__ */