NT4/private/ntos/nthals/halsni4x/mips/allstart.c
2020-09-30 17:12:29 +02:00

60 lines
1.0 KiB
C
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*++
Copyright (c) 1993 - 1994 Siemens Nixdorf Informationssysteme AG
Copyright (c) 1994 Microsoft Corporation
Module Name:
allstart.c
Abstract:
This module implements the platform specific operations that must be
performed after all processors have been started.
--*/
#include "halp.h"
#include "string.h"
extern VOID HalpInit2MPAgent( );
BOOLEAN
HalAllProcessorsStarted (
VOID
)
/*++
Routine Description:
This function executes platform specific operations that must be
performed after all processors have been started. It is called
for each processor in the host configuration.
Note: this HAL is for the Siemens Nixdorf Uni-/MultiProcessor Computers
Arguments:
None.
Return Value:
If platform specific operations are successful, then return TRUE.
Otherwise, return FALSE.
--*/
{
if ((PCR->Number == HalpNetProcessor) && (HalpProcessorId == MPAGENT)){
PCR->InterruptRoutine[NETMULTI_LEVEL] = (PKINTERRUPT_ROUTINE)HalpRM400Int5Process;
HalpInit2MPAgent( );
}
return TRUE;
}