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.

42 lines
735 B

4 years ago
  1. /*++
  2. Copyright (c) 1993 Digital Equipment Corporation
  3. Module Name:
  4. machdep.h
  5. Abstract:
  6. Dummy file so the Jensen HAL can include some things from halalpha
  7. Author:
  8. John Vert (jvert) 17-Aug-1994
  9. Environment:
  10. Kernel mode
  11. Revision History:
  12. --*/
  13. #ifndef _MACHDEP_
  14. #define _MACHDEP_
  15. //
  16. // Define the per-processor data structures allocated in the PCR
  17. // for each EV4 processor.
  18. //
  19. typedef struct _JENSEN_PCR{
  20. ULONGLONG HalpCycleCount; // 64-bit per-processor cycle count
  21. EV4ProfileCount ProfileCount; // Profile counter state
  22. EV4IrqStatus IrqStatusTable[MaximumIrq]; // Irq status table
  23. } JENSEN_PCR, *PJENSEN_PCR;
  24. #define HAL_PCR ( (PJENSEN_PCR)(&(PCR->HalReserved)) )
  25. #endif //_MACHDEP_