Ignore:
Timestamp:
Jan 13, 2003, 5:51:40 PM (23 years ago)
Author:
sandervl
Message:

Don't allocate selectors anymore. Allocate tiled memory and call Dos32FlatToSel; Get default stack size from PE header; Thread handles not closed properly

File:
1 edited

Legend:

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

    r9533 r9667  
    1 /* $Id: winexebase.cpp,v 1.21 2002-12-20 10:38:57 sandervl Exp $ */
     1/* $Id: winexebase.cpp,v 1.22 2003-01-13 16:51:40 sandervl Exp $ */
    22
    33/*
     
    123123}
    124124//******************************************************************************
     125//Default stack size is 1MB; the PE loader reads it from the executable header
     126//******************************************************************************
     127ULONG Win32ExeBase::getDefaultStackSize()
     128{
     129    return 0x100000;
     130}
     131//******************************************************************************
    125132//******************************************************************************
    126133BOOL Win32ExeBase::isDll()
    127134{
    128   return FALSE;
     135    return FALSE;
    129136}
    130137//******************************************************************************
Note: See TracChangeset for help on using the changeset viewer.