Ignore:
Timestamp:
Jun 27, 2001, 3:35:47 PM (24 years ago)
Author:
sandervl
Message:

reset FPU before calling entrypoints; search executable in CreateProcess

File:
1 edited

Legend:

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

    r4407 r6129  
    1 /* $Id: cpu.cpp,v 1.11 2000-10-03 17:28:29 sandervl Exp $ */
     1/* $Id: cpu.cpp,v 1.12 2001-06-27 13:35:45 sandervl Exp $ */
    22/*
    33 * Odin win32 CPU apis
     
    232232  GetSystemInfo (&si); /* To ensure the information is loaded and cached */
    233233
    234   if (feature < 64)
     234  if (feature < 64) {
     235    dprintf(("IsProcessorFeaturePresent %x -> %x", feature, PF[feature]));
    235236    return PF[feature];
     237  }
    236238  else
    237239    return FALSE;
Note: See TracChangeset for help on using the changeset viewer.