Changeset 8886 for trunk/src


Ignore:
Timestamp:
Jul 18, 2002, 1:58:46 PM (23 years ago)
Author:
achimha
Message:

documented TLS implementation

File:
1 edited

Legend:

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

    r4796 r8886  
    1 /* $Id: wintls.cpp,v 1.17 2000-12-12 23:57:16 sandervl Exp $ */
     1/* $Id: wintls.cpp,v 1.18 2002-07-18 11:58:46 achimha Exp $ */
    22/*
    33 * Win32 TLS API functions
     
    1919#define DBG_LOCALLOG  DBG_wintls
    2020#include "dbglocal.h"
     21
     22//******************************************************************************
     23// Design information on TLS - AH 2002-07-18
     24//
     25// Windows TLS is very restricted in size. We implement it the same way as NT -
     26// as part of the thread's TEB. We do not use the OS/2 TLS facilities directly.
     27// The only part we use OS/2 TLS for is to store the thread's TEB pointer.
     28// We fully support .tls sections in PE modules with this method.
     29//******************************************************************************
    2130
    2231//******************************************************************************
Note: See TracChangeset for help on using the changeset viewer.