forked from xt-sys/exectos
Routines with no prototype cannot use XTAPI calling convention
This commit is contained in:
parent
83a976dd3a
commit
c70d2e2afa
@ -19,7 +19,7 @@
|
|||||||
*/
|
*/
|
||||||
XTAPI
|
XTAPI
|
||||||
VOID
|
VOID
|
||||||
HlClearApicErrors()
|
HlClearApicErrors(VOID)
|
||||||
{
|
{
|
||||||
/* Clear APIC errors */
|
/* Clear APIC errors */
|
||||||
HlWriteApicRegister(APIC_ESR, 0);
|
HlWriteApicRegister(APIC_ESR, 0);
|
||||||
@ -34,7 +34,7 @@ HlClearApicErrors()
|
|||||||
*/
|
*/
|
||||||
XTAPI
|
XTAPI
|
||||||
VOID
|
VOID
|
||||||
HlDisableLegacyPic()
|
HlDisableLegacyPic(VOID)
|
||||||
{
|
{
|
||||||
HlIoPortOutByte(PIC1_DATA_PORT, 0xFF);
|
HlIoPortOutByte(PIC1_DATA_PORT, 0xFF);
|
||||||
HlIoPortOutByte(PIC2_DATA_PORT, 0xFF);
|
HlIoPortOutByte(PIC2_DATA_PORT, 0xFF);
|
||||||
@ -75,7 +75,7 @@ HlReadApicRegister(IN APIC_REGISTER Register)
|
|||||||
*/
|
*/
|
||||||
XTAPI
|
XTAPI
|
||||||
VOID
|
VOID
|
||||||
HlSendEoi()
|
HlSendEoi(VOID)
|
||||||
{
|
{
|
||||||
/* Send APIC EOI */
|
/* Send APIC EOI */
|
||||||
HlWriteApicRegister(APIC_EOI, 0);
|
HlWriteApicRegister(APIC_EOI, 0);
|
||||||
@ -158,7 +158,7 @@ HlpCheckX2ApicSupport(VOID)
|
|||||||
*/
|
*/
|
||||||
XTCDECL
|
XTCDECL
|
||||||
VOID
|
VOID
|
||||||
HlpHandleApicSpuriousService()
|
HlpHandleApicSpuriousService(VOID)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -171,7 +171,7 @@ HlpHandleApicSpuriousService()
|
|||||||
*/
|
*/
|
||||||
XTCDECL
|
XTCDECL
|
||||||
VOID
|
VOID
|
||||||
HlpHandlePicSpuriousService()
|
HlpHandlePicSpuriousService(VOID)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -15,11 +15,11 @@
|
|||||||
/* HAL library routines forward references */
|
/* HAL library routines forward references */
|
||||||
XTAPI
|
XTAPI
|
||||||
VOID
|
VOID
|
||||||
HlClearApicErrors();
|
HlClearApicErrors(VOID);
|
||||||
|
|
||||||
XTAPI
|
XTAPI
|
||||||
VOID
|
VOID
|
||||||
HlDisableLegacyPic();
|
HlDisableLegacyPic(VOID);
|
||||||
|
|
||||||
XTFASTCALL
|
XTFASTCALL
|
||||||
ULONG
|
ULONG
|
||||||
@ -27,7 +27,7 @@ HlReadApicRegister(IN APIC_REGISTER Register);
|
|||||||
|
|
||||||
XTAPI
|
XTAPI
|
||||||
VOID
|
VOID
|
||||||
HlSendEoi();
|
HlSendEoi(VOID);
|
||||||
|
|
||||||
XTFASTCALL
|
XTFASTCALL
|
||||||
VOID
|
VOID
|
||||||
@ -40,11 +40,11 @@ HlpCheckX2ApicSupport(VOID);
|
|||||||
|
|
||||||
XTCDECL
|
XTCDECL
|
||||||
VOID
|
VOID
|
||||||
HlpHandleApicSpuriousService();
|
HlpHandleApicSpuriousService(VOID);
|
||||||
|
|
||||||
XTCDECL
|
XTCDECL
|
||||||
VOID
|
VOID
|
||||||
HlpHandlePicSpuriousService();
|
HlpHandlePicSpuriousService(VOID);
|
||||||
|
|
||||||
XTAPI
|
XTAPI
|
||||||
VOID
|
VOID
|
||||||
|
@ -15,11 +15,11 @@
|
|||||||
/* HAL library routines forward references */
|
/* HAL library routines forward references */
|
||||||
XTAPI
|
XTAPI
|
||||||
VOID
|
VOID
|
||||||
HlClearApicErrors();
|
HlClearApicErrors(VOID);
|
||||||
|
|
||||||
XTAPI
|
XTAPI
|
||||||
VOID
|
VOID
|
||||||
HlDisableLegacyPic();
|
HlDisableLegacyPic(VOID);
|
||||||
|
|
||||||
XTFASTCALL
|
XTFASTCALL
|
||||||
ULONG
|
ULONG
|
||||||
@ -27,7 +27,7 @@ HlReadApicRegister(IN APIC_REGISTER Register);
|
|||||||
|
|
||||||
XTAPI
|
XTAPI
|
||||||
VOID
|
VOID
|
||||||
HlSendEoi();
|
HlSendEoi(VOID);
|
||||||
|
|
||||||
XTFASTCALL
|
XTFASTCALL
|
||||||
VOID
|
VOID
|
||||||
@ -40,11 +40,11 @@ HlpCheckX2ApicSupport(VOID);
|
|||||||
|
|
||||||
XTCDECL
|
XTCDECL
|
||||||
VOID
|
VOID
|
||||||
HlpHandleApicSpuriousService();
|
HlpHandleApicSpuriousService(VOID);
|
||||||
|
|
||||||
XTCDECL
|
XTCDECL
|
||||||
VOID
|
VOID
|
||||||
HlpHandlePicSpuriousService();
|
HlpHandlePicSpuriousService(VOID);
|
||||||
|
|
||||||
XTAPI
|
XTAPI
|
||||||
VOID
|
VOID
|
||||||
|
Loading…
Reference in New Issue
Block a user