Leaked source code of windows server 2003
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.

54 lines
739 B

  1. /*++
  2. Copyright (c) 1997 Microsoft Corporation
  3. Module Name:
  4. ixthrotl.c
  5. Abstract:
  6. This module implements the code for throttling the processors
  7. Author:
  8. Jake Oshins (jakeo) 17-July-1997
  9. Environment:
  10. Kernel mode only.
  11. Revision History:
  12. --*/
  13. #include "halp.h"
  14. #include "acpitabl.h"
  15. #include "xxacpi.h"
  16. #include "pci.h"
  17. VOID
  18. FASTCALL
  19. HalProcessorThrottle (
  20. IN UCHAR Throttle
  21. )
  22. /*++
  23. Routine Description:
  24. This function limits the speed of the processor.
  25. Arguments:
  26. (ecx) = Throttle setting
  27. Return Value:
  28. none
  29. --*/
  30. {
  31. HalDebugPrint(( HAL_ERROR, "HAL: HalProcessorThrottle - Throttle not yet supported for IA64" ));
  32. KeBugCheck(0);
  33. }