summaryrefslogtreecommitdiffstats
path: root/private/ntos/nthals/halsni4x/mips/allstart.c
blob: 8e4dbcc418076ea4c883433a65f64590a93bbb2d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/*++

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;

}