Changeset 6956 in vbox for trunk/include
- Timestamp:
- Feb 14, 2008 2:50:04 PM (17 years ago)
- Location:
- trunk/include/iprt
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/thread.h
r6951 r6956 364 364 * @{ 365 365 */ 366 /** A TLS index. */367 typedef int RTTLS;368 /** Pointer to a TLS index. */369 typedef RTTLS *PRTTLS;370 /** Pointer to a const TLS index. */371 typedef RTTLS const *PCRTTLS;372 /** NIL TLS index value. */373 #define NIL_RTTLS (-1)374 375 366 /** 376 367 * Thread termination callback for destroying a non-zero TLS entry. -
trunk/include/iprt/types.h
r5999 r6956 941 941 #define NIL_RTTHREAD 0 942 942 943 /** A TLS index. */ 944 typedef int RTTLS; 945 /** Pointer to a TLS index. */ 946 typedef RTTLS *PRTTLS; 947 /** Pointer to a const TLS index. */ 948 typedef RTTLS const *PCRTTLS; 949 /** NIL TLS index value. */ 950 #define NIL_RTTLS (-1) 951 943 952 /** Handle to a simple heap. */ 944 953 typedef R3R0PTRTYPE(struct RTHEAPSIMPLEINTERNAL *) RTHEAPSIMPLE;
Note:
See TracChangeset
for help on using the changeset viewer.