Changeset 1383
- Timestamp:
- Apr 26, 2004, 2:10:22 AM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/emx/src/lib/process/tls.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r1382 r1383 127 127 if ( iIndex < 0 128 128 || iIndex >= __LIBC_TLS_MAX 129 || __atomic_test_bit(&auBitmap[0], iIndex)129 || !__atomic_test_bit(&auBitmap[0], iIndex) 130 130 ) 131 131 { … … 157 157 if ( iIndex < 0 158 158 || iIndex >= __LIBC_TLS_MAX 159 || __atomic_test_bit(&auBitmap[0], iIndex)159 || !__atomic_test_bit(&auBitmap[0], iIndex) 160 160 ) 161 161 { … … 180 180 if ( iIndex < 0 181 181 || iIndex >= __LIBC_TLS_MAX 182 || __atomic_test_bit(&auBitmap[0], iIndex)182 || !__atomic_test_bit(&auBitmap[0], iIndex) 183 183 ) 184 184 { -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.