Ignore:
Timestamp:
Apr 29, 2000, 8:26:59 PM (25 years ago)
Author:
sandervl
Message:

init changes, export for installation program, create additional directories & registry keys, added lvl2 debug log feature, override for windows dir re-added

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kernel32/cpu.cpp

    r2984 r3461  
    1 /* $Id: cpu.cpp,v 1.7 2000-03-03 11:15:57 sandervl Exp $ */
     1/* $Id: cpu.cpp,v 1.8 2000-04-29 18:26:57 sandervl Exp $ */
    22/*
    33 * Odin win32 CPU apis
     
    2727DEFAULT_DEBUG_CHANNEL(CPU)
    2828
    29 static BYTE PF[64] = {0,};
    30 static nrCPUs = 1;
     29static BYTE PF[64]          = {0,};
     30static nrCPUs               = 1;
     31static SYSTEM_INFO cachedsi = {0};
    3132
    3233//******************************************************************************
     
    6061VOID WINAPI GetSystemInfo(LPSYSTEM_INFO si)     /* [out] system information */
    6162{
     63 HKEY   xhkey=0,hkey;
     64 HKEY   fpukey=0, xhfpukey;
     65 char   buf[20];
     66 DWORD  features, signature;
    6267 static int cache = 0;
    63  static SYSTEM_INFO cachedsi;
    64  HKEY   xhkey=0,hkey;
    65  HKEY   fpukey=0, xhfpukey;
    66  char buf[20];
    67  DWORD features, signature;
    6868
    6969        if(!si) {
Note: See TracChangeset for help on using the changeset viewer.