Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
863 B

  1. page ,132
  2. title atlssup - TLS support object
  3. ;***
  4. ;atlssup.asm - Thread Local Storage support object (defines [_]_tls_array)
  5. ;
  6. ; Copyright (c) 1993-2001, Microsoft Corporation. All rights reserved.
  7. ;
  8. ;Purpose:
  9. ; Defines the symbol [_]_tls_array which is the offset into the
  10. ; TEB (thread environment block) of the thread local storage pointer.
  11. ;
  12. ;Revision History:
  13. ; 03-19-93 SKS Initial version (from ChuckM)
  14. ; 03-22-93 SKS One less leading underscore with new include file
  15. ; 10-06-94 SKS Added header file comment
  16. ;
  17. ;*******************************************************************************
  18. .xlist
  19. include cruntime.inc
  20. .list
  21. ; This symbol is being defined in the C language model
  22. ; and will have an extra underscore character prepended.
  23. public _tls_array
  24. _tls_array equ 2Ch ; TEB.ThreadLocalStoragePointer
  25. end