Cleanup XTDK and XTOSKRNL headers
This commit is contained in:
parent
841a6b304b
commit
f05a262da2
@ -1,16 +0,0 @@
|
|||||||
/**
|
|
||||||
* PROJECT: ExectOS
|
|
||||||
* COPYRIGHT: See COPYING.md in the top level directory
|
|
||||||
* FILE: sdk/xtdk/amd64/mmfuncs.h
|
|
||||||
* DESCRIPTION: Memory manager routines specific to AMD64 architecture
|
|
||||||
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifndef __XTDK_AMD64_MMFUNCS_H
|
|
||||||
#define __XTDK_AMD64_MMFUNCS_H
|
|
||||||
|
|
||||||
#include <xtbase.h>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#endif /* __XTDK_AMD64_MMFUNCS_H */
|
|
@ -1,18 +0,0 @@
|
|||||||
/**
|
|
||||||
* PROJECT: ExectOS
|
|
||||||
* COPYRIGHT: See COPYING.md in the top level directory
|
|
||||||
* FILE: sdk/xtdk/amd64/rtlfuncs.h
|
|
||||||
* DESCRIPTION: XT runtime library routines specific to AMD64 architecture
|
|
||||||
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifndef __XTDK_AMD64_RTLFUNCS_H
|
|
||||||
#define __XTDK_AMD64_RTLFUNCS_H
|
|
||||||
|
|
||||||
#include <xtdefs.h>
|
|
||||||
#include <xtstruct.h>
|
|
||||||
#include <xttypes.h>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#endif /* __XTDK_AMD64_RTLFUNCS_H */
|
|
@ -13,6 +13,7 @@
|
|||||||
#include <xttypes.h>
|
#include <xttypes.h>
|
||||||
|
|
||||||
|
|
||||||
|
/* Kernel Executive routines forward references */
|
||||||
XTFASTCALL
|
XTFASTCALL
|
||||||
BOOLEAN
|
BOOLEAN
|
||||||
ExAcquireRundownProtection(IN PEX_RUNDOWN_REFERENCE Descriptor);
|
ExAcquireRundownProtection(IN PEX_RUNDOWN_REFERENCE Descriptor);
|
||||||
|
@ -1,16 +0,0 @@
|
|||||||
/**
|
|
||||||
* PROJECT: ExectOS
|
|
||||||
* COPYRIGHT: See COPYING.md in the top level directory
|
|
||||||
* FILE: sdk/xtdk/i686/mmfuncs.h
|
|
||||||
* DESCRIPTION: Memory manager routines specific to i686 architecture
|
|
||||||
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifndef __XTDK_I686_MMFUNCS_H
|
|
||||||
#define __XTDK_I686_MMFUNCS_H
|
|
||||||
|
|
||||||
#include <xtbase.h>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#endif /* __XTDK_I686_MMFUNCS_H */
|
|
@ -1,18 +0,0 @@
|
|||||||
/**
|
|
||||||
* PROJECT: ExectOS
|
|
||||||
* COPYRIGHT: See COPYING.md in the top level directory
|
|
||||||
* FILE: sdk/xtdk/i686/rtlfuncs.h
|
|
||||||
* DESCRIPTION: XT runtime library routines specific to i686 architecture
|
|
||||||
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifndef __XTDK_I686_RTLFUNCS_H
|
|
||||||
#define __XTDK_I686_RTLFUNCS_H
|
|
||||||
|
|
||||||
#include <xtdefs.h>
|
|
||||||
#include <xtstruct.h>
|
|
||||||
#include <xttypes.h>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#endif /* __XTDK_I686_RTLFUNCS_H */
|
|
@ -1,16 +0,0 @@
|
|||||||
/**
|
|
||||||
* PROJECT: ExectOS
|
|
||||||
* COPYRIGHT: See COPYING.md in the top level directory
|
|
||||||
* FILE: sdk/xtdk/mmfuncs.h
|
|
||||||
* DESCRIPTION: Memory manager routines
|
|
||||||
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifndef __XTDK_MMFUNCS_H
|
|
||||||
#define __XTDK_MMFUNCS_H
|
|
||||||
|
|
||||||
#include <xtbase.h>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#endif /* __XTDK_MMFUNCS_H */
|
|
@ -45,11 +45,8 @@
|
|||||||
#include <exfuncs.h>
|
#include <exfuncs.h>
|
||||||
#include <hlfuncs.h>
|
#include <hlfuncs.h>
|
||||||
#include <kefuncs.h>
|
#include <kefuncs.h>
|
||||||
#include <mmfuncs.h>
|
|
||||||
#include <rtlfuncs.h>
|
#include <rtlfuncs.h>
|
||||||
|
|
||||||
/* Architecture specific XT routines*/
|
/* Architecture specific XT routines*/
|
||||||
#include ARCH_HEADER(arfuncs.h)
|
#include ARCH_HEADER(arfuncs.h)
|
||||||
#include ARCH_HEADER(hlfuncs.h)
|
#include ARCH_HEADER(hlfuncs.h)
|
||||||
#include ARCH_HEADER(mmfuncs.h)
|
|
||||||
#include ARCH_HEADER(rtlfuncs.h)
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
* PROJECT: ExectOS
|
* PROJECT: ExectOS
|
||||||
* COPYRIGHT: See COPYING.md in the top level directory
|
* COPYRIGHT: See COPYING.md in the top level directory
|
||||||
* FILE: xtoskrnl/includes/amd64/ar.h
|
* FILE: xtoskrnl/includes/amd64/ar.h
|
||||||
* DESCRIPTION: Private AMD64 routine definitions for architecture library
|
* DESCRIPTION: AMD64 architecture library routines
|
||||||
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
|
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -11,6 +11,8 @@
|
|||||||
|
|
||||||
#include <xtos.h>
|
#include <xtos.h>
|
||||||
|
|
||||||
|
|
||||||
|
/* AMD64 architecture library routines forward references */
|
||||||
XTCDECL
|
XTCDECL
|
||||||
VOID
|
VOID
|
||||||
ArClearInterruptFlag();
|
ArClearInterruptFlag();
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
* PROJECT: ExectOS
|
* PROJECT: ExectOS
|
||||||
* COPYRIGHT: See COPYING.md in the top level directory
|
* COPYRIGHT: See COPYING.md in the top level directory
|
||||||
* FILE: xtoskrnl/includes/amd64/ke.h
|
* FILE: xtoskrnl/includes/amd64/ke.h
|
||||||
* DESCRIPTION: Private AMD64 routine definitions for kernel services
|
* DESCRIPTION: XTOS kernel services routine definitions specific to AMD64 architecture
|
||||||
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
|
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -12,6 +12,7 @@
|
|||||||
#include <xtos.h>
|
#include <xtos.h>
|
||||||
|
|
||||||
|
|
||||||
|
/* AMD64 specific Kernel services routines forward references */
|
||||||
XTAPI
|
XTAPI
|
||||||
PKPROCESSOR_BLOCK
|
PKPROCESSOR_BLOCK
|
||||||
KeGetCurrentProcessorBlock(VOID);
|
KeGetCurrentProcessorBlock(VOID);
|
||||||
|
@ -12,6 +12,7 @@
|
|||||||
#include <xtos.h>
|
#include <xtos.h>
|
||||||
|
|
||||||
|
|
||||||
|
/* AMD64 Memory Manager routines forward references */
|
||||||
XTFASTCALL
|
XTFASTCALL
|
||||||
VOID
|
VOID
|
||||||
MmZeroPages(IN PVOID Address,
|
MmZeroPages(IN PVOID Address,
|
||||||
|
@ -12,6 +12,7 @@
|
|||||||
#include <xtos.h>
|
#include <xtos.h>
|
||||||
|
|
||||||
|
|
||||||
|
/* Runtime Library routines specific to AMD64 forward references */
|
||||||
XTAPI
|
XTAPI
|
||||||
VOID
|
VOID
|
||||||
RtlGetStackLimits(OUT PULONG_PTR StackBase,
|
RtlGetStackLimits(OUT PULONG_PTR StackBase,
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
* PROJECT: ExectOS
|
* PROJECT: ExectOS
|
||||||
* COPYRIGHT: See COPYING.md in the top level directory
|
* COPYRIGHT: See COPYING.md in the top level directory
|
||||||
* FILE: xtoskrnl/includes/hl.h
|
* FILE: xtoskrnl/includes/hl.h
|
||||||
* DESCRIPTION: Private routine definitions for hardware abstraction layer
|
* DESCRIPTION: XT hardware abstraction layer routines
|
||||||
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
|
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -12,6 +12,7 @@
|
|||||||
#include <xtos.h>
|
#include <xtos.h>
|
||||||
|
|
||||||
|
|
||||||
|
/* HAL library routines forward references */
|
||||||
XTAPI
|
XTAPI
|
||||||
VOID
|
VOID
|
||||||
HlClearScreen(VOID);
|
HlClearScreen(VOID);
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
* PROJECT: ExectOS
|
* PROJECT: ExectOS
|
||||||
* COPYRIGHT: See COPYING.md in the top level directory
|
* COPYRIGHT: See COPYING.md in the top level directory
|
||||||
* FILE: xtoskrnl/includes/i686/ar.h
|
* FILE: xtoskrnl/includes/i686/ar.h
|
||||||
* DESCRIPTION: Private i686 routine definitions for architecture library
|
* DESCRIPTION: I686 architecture library routines
|
||||||
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
|
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -12,6 +12,7 @@
|
|||||||
#include <xtos.h>
|
#include <xtos.h>
|
||||||
|
|
||||||
|
|
||||||
|
/* I686 architecture library routines forward references */
|
||||||
XTCDECL
|
XTCDECL
|
||||||
VOID
|
VOID
|
||||||
ArClearInterruptFlag();
|
ArClearInterruptFlag();
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
* PROJECT: ExectOS
|
* PROJECT: ExectOS
|
||||||
* COPYRIGHT: See COPYING.md in the top level directory
|
* COPYRIGHT: See COPYING.md in the top level directory
|
||||||
* FILE: xtoskrnl/includes/i686/ke.h
|
* FILE: xtoskrnl/includes/i686/ke.h
|
||||||
* DESCRIPTION: Private i686 routine definitions for kernel services
|
* DESCRIPTION: XTOS kernel services routine definitions specific to i686 architecture
|
||||||
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
|
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -12,6 +12,7 @@
|
|||||||
#include <xtos.h>
|
#include <xtos.h>
|
||||||
|
|
||||||
|
|
||||||
|
/* I686 specific Kernel services routines forward references */
|
||||||
XTAPI
|
XTAPI
|
||||||
PKPROCESSOR_BLOCK
|
PKPROCESSOR_BLOCK
|
||||||
KeGetCurrentProcessorBlock(VOID);
|
KeGetCurrentProcessorBlock(VOID);
|
||||||
|
@ -12,6 +12,7 @@
|
|||||||
#include <xtos.h>
|
#include <xtos.h>
|
||||||
|
|
||||||
|
|
||||||
|
/* I686 Memory Manager routines forward references */
|
||||||
XTFASTCALL
|
XTFASTCALL
|
||||||
VOID
|
VOID
|
||||||
MmZeroPages(IN PVOID Address,
|
MmZeroPages(IN PVOID Address,
|
||||||
|
@ -12,6 +12,7 @@
|
|||||||
#include <xtos.h>
|
#include <xtos.h>
|
||||||
|
|
||||||
|
|
||||||
|
/* Runtime Library routines specific to I686 forward references */
|
||||||
XTAPI
|
XTAPI
|
||||||
VOID
|
VOID
|
||||||
RtlGetStackLimits(OUT PULONG_PTR StackBase,
|
RtlGetStackLimits(OUT PULONG_PTR StackBase,
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
* PROJECT: ExectOS
|
* PROJECT: ExectOS
|
||||||
* COPYRIGHT: See COPYING.md in the top level directory
|
* COPYRIGHT: See COPYING.md in the top level directory
|
||||||
* FILE: xtoskrnl/includes/ke.h
|
* FILE: xtoskrnl/includes/ke.h
|
||||||
* DESCRIPTION: Private routine definitions for kernel services
|
* DESCRIPTION: XTOS kernel services routine definitions
|
||||||
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
|
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -12,6 +12,7 @@
|
|||||||
#include <xtos.h>
|
#include <xtos.h>
|
||||||
|
|
||||||
|
|
||||||
|
/* Kernel services routines forward references */
|
||||||
XTAPI
|
XTAPI
|
||||||
VOID
|
VOID
|
||||||
KeClearEvent(IN PKEVENT Event);
|
KeClearEvent(IN PKEVENT Event);
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
* PROJECT: ExectOS
|
* PROJECT: ExectOS
|
||||||
* COPYRIGHT: See COPYING.md in the top level directory
|
* COPYRIGHT: See COPYING.md in the top level directory
|
||||||
* FILE: xtoskrnl/includes/mm.h
|
* FILE: xtoskrnl/includes/mm.h
|
||||||
* DESCRIPTION: Private routine definitions for memory manager
|
* DESCRIPTION: Memory manager routines
|
||||||
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
|
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -12,6 +12,7 @@
|
|||||||
#include <xtos.h>
|
#include <xtos.h>
|
||||||
|
|
||||||
|
|
||||||
|
/* Memory Manager routines forward references */
|
||||||
XTAPI
|
XTAPI
|
||||||
XTSTATUS
|
XTSTATUS
|
||||||
MmAllocateKernelStack(IN PVOID *Stack,
|
MmAllocateKernelStack(IN PVOID *Stack,
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
* PROJECT: ExectOS
|
* PROJECT: ExectOS
|
||||||
* COPYRIGHT: See COPYING.md in the top level directory
|
* COPYRIGHT: See COPYING.md in the top level directory
|
||||||
* FILE: xtoskrnl/includes/po.h
|
* FILE: xtoskrnl/includes/po.h
|
||||||
* DESCRIPTION: Private routine definitions for kernel power manager
|
* DESCRIPTION: Power manager subsystem routines
|
||||||
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
|
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -12,6 +12,7 @@
|
|||||||
#include <xtos.h>
|
#include <xtos.h>
|
||||||
|
|
||||||
|
|
||||||
|
/* Power Manager routines forward references */
|
||||||
XTAPI
|
XTAPI
|
||||||
VOID
|
VOID
|
||||||
PoInitializeProcessorControlBlock(IN OUT PKPROCESSOR_CONTROL_BLOCK Prcb);
|
PoInitializeProcessorControlBlock(IN OUT PKPROCESSOR_CONTROL_BLOCK Prcb);
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
* PROJECT: ExectOS
|
* PROJECT: ExectOS
|
||||||
* COPYRIGHT: See COPYING.md in the top level directory
|
* COPYRIGHT: See COPYING.md in the top level directory
|
||||||
* FILE: xtoskrnl/includes/rtl.h
|
* FILE: xtoskrnl/includes/rtl.h
|
||||||
* DESCRIPTION: Private routine definitions for runtime library
|
* DESCRIPTION: XT runtime library routines
|
||||||
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
|
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -12,6 +12,7 @@
|
|||||||
#include <xtos.h>
|
#include <xtos.h>
|
||||||
|
|
||||||
|
|
||||||
|
/* Runtime Library routines forward references */
|
||||||
XTFASTCALL
|
XTFASTCALL
|
||||||
CHAR
|
CHAR
|
||||||
RtlAtomicAnd8(IN VOLATILE PCHAR Address,
|
RtlAtomicAnd8(IN VOLATILE PCHAR Address,
|
||||||
|
Loading…
Reference in New Issue
Block a user