Source code of Windows XP (NT5)
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.

31 lines
576 B

  1. /*++
  2. Copyright (c) 2000-2001, Microsoft Corporation All rights reserved.
  3. Module Name:
  4. threads.h
  5. Abstract:
  6. Header file for threads.c
  7. Revision History:
  8. 01 Mar 2001 v-michka Created.
  9. --*/
  10. #ifndef THREADS_H
  11. #define THREADS_H
  12. UINT g_tls; // GODOT TLS slot - lots of thread-specific info here
  13. CRITICAL_SECTION g_csThreads; // Our critical section object for thread data (use sparingly!)
  14. // Thread stuff
  15. LPGODOTTLSINFO GetThreadInfoSafe(BOOL fAllocate);
  16. void UninitThread(void);
  17. void UninitAllThreads(void);
  18. #endif // THREADS_H