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/initsystem.cpp

    r5425 r6129  
    1 /* $Id: initsystem.cpp,v 1.27 2001-04-01 14:33:50 sandervl Exp $ */
     1/* $Id: initsystem.cpp,v 1.28 2001-06-27 13:35:46 sandervl Exp $ */
    22/*
    33 * Odin system initialization (registry, directories & environment)
     
    6767        buffer1[12] = 0;
    6868        signature = GetCPUSignature();
    69         sprintf(buffer, "x86 Family %x Model %x Stepping %x, %s", (signature >> 8)&0xf, signature & 0xf, (signature >> 4)&0xf, buffer1);
     69        sprintf(buffer, "x86 Family %x Model %x Stepping %x, %s", (signature >> 8)&0xf, (signature >> 4) & 0xf, signature & 0xf, buffer1);
    7070        SetEnvironmentVariableA("PROCESSOR_IDENTIFIER", buffer);
    7171        sprintf(buffer, "%x", (signature >> 8)&0xf);
Note: See TracChangeset for help on using the changeset viewer.