Changeset 281 for trunk/include/win/thread.h
- Timestamp:
- Jul 7, 1999, 10:11:58 AM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/win/thread.h
r125 r281 1 /* $Id: thread.h,v 1. 3 1999-06-19 17:58:50sandervl Exp $ */1 /* $Id: thread.h,v 1.4 1999-07-07 08:11:09 sandervl Exp $ */ 2 2 3 3 /* … … 13 13 #include "winbase.h" 14 14 //#include "selectors.h" /* for SET_FS */ 15 16 #ifdef __WIN32OS2__ 17 #define TLS_MINIMUM_AVAILABLE 64 18 #endif 15 19 16 20 struct _PDB; … … 71 75 WORD thunk_ss; /* 94 Yet another 16-bit stack selector */ 72 76 WORD pad3; /* 96 */ 77 #ifdef __WIN32OS2__ 78 LPVOID tls_array[TLS_MINIMUM_AVAILABLE]; /* 98 Thread local storage */ 79 #else 73 80 LPVOID tls_array[64]; /* 98 Thread local storage */ 81 #endif 74 82 DWORD delta_priority; /* 198 Priority delta */ 75 83 DWORD unknown4[7]; /* 19c Unknown */
Note:
See TracChangeset
for help on using the changeset viewer.