summaryrefslogtreecommitdiffstats
path: root/private/ntos/nthals/halsgi/mips/allstart.c
diff options
context:
space:
mode:
Diffstat (limited to 'private/ntos/nthals/halsgi/mips/allstart.c')
-rw-r--r--private/ntos/nthals/halsgi/mips/allstart.c56
1 files changed, 56 insertions, 0 deletions
diff --git a/private/ntos/nthals/halsgi/mips/allstart.c b/private/ntos/nthals/halsgi/mips/allstart.c
new file mode 100644
index 000000000..8d81b6eb8
--- /dev/null
+++ b/private/ntos/nthals/halsgi/mips/allstart.c
@@ -0,0 +1,56 @@
+/*++
+
+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.
+
+Author:
+
+ David N. Cutler (davec) 19-Jun-1994
+
+Environment:
+
+ Kernel mode only.
+
+Revision History:
+
+--*/
+
+#include "halp.h"
+
+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.
+
+Arguments:
+
+ None.
+
+Return Value:
+
+ If platform specific operations are successful, then return TRUE.
+ Otherwise, return FALSE.
+
+--*/
+
+{
+
+ return TRUE;
+}