Windows NT 4.0 source code leak
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

55 lines
775 B

4 years ago
  1. /*++
  2. Copyright (c) 1994 Microsoft Corporation
  3. Module Name:
  4. allstart.c
  5. Abstract:
  6. This module implements the platform specific operations that must be
  7. performed after all processors have been started.
  8. Author:
  9. John Vert (jvert) 23-Jun-1994
  10. Environment:
  11. Kernel mode only.
  12. Revision History:
  13. --*/
  14. #include "halp.h"
  15. BOOLEAN
  16. HalAllProcessorsStarted (
  17. VOID
  18. )
  19. /*++
  20. Routine Description:
  21. This function executes platform specific operations that must be
  22. performed after all processors have been started. It is called
  23. for each processor in the host configuration.
  24. Arguments:
  25. None.
  26. Return Value:
  27. If platform specific operations are successful, then return TRUE.
  28. Otherwise, return FALSE.
  29. --*/
  30. {
  31. return TRUE;
  32. }