Changeset 96052 in vbox for trunk/src/VBox/Runtime/include
- Timestamp:
- Aug 5, 2022 10:48:48 AM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 152851
- Location:
- trunk/src/VBox/Runtime/include/internal
- Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/include/internal/thread.h
r94718 r96052 42 42 #ifdef RT_WITH_ICONV_CACHE 43 43 # include "internal/string.h" 44 #endif 45 #if defined(IPRT_NO_CRT) && defined(IN_RING3) 46 # include "internal/nocrt.h" 44 47 #endif 45 48 … … 106 109 /** Handle cache for iconv. 107 110 * @remarks ASSUMES sizeof(void *) >= sizeof(iconv_t). */ 108 void *ahIconvs[RTSTRICONV_END];111 void *ahIconvs[RTSTRICONV_END]; 109 112 #endif 110 113 #ifdef IPRT_WITH_GENERIC_TLS … … 114 117 /** Thread name. */ 115 118 char szName[RTTHREAD_NAME_LEN]; 119 #if defined(IPRT_NO_CRT) && defined(IN_RING3) 120 /** No-CRT per thread data. */ 121 RTNOCRTTHREADDATA NoCrt; 122 #endif 116 123 } RTTHREADINT; 117 124 /** Pointer to the internal representation of a thread. */
Note:
See TracChangeset
for help on using the changeset viewer.