Changeset 1383


Ignore:
Timestamp:
Apr 26, 2004, 2:10:22 AM (21 years ago)
Author:
bird
Message:

Fixed a few problems.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/emx/src/lib/process/tls.c

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.2
    r1382 r1383  
    127127    if (    iIndex < 0
    128128        ||  iIndex >= __LIBC_TLS_MAX
    129         ||  __atomic_test_bit(&auBitmap[0], iIndex)
     129        ||  !__atomic_test_bit(&auBitmap[0], iIndex)
    130130            )
    131131    {
     
    157157    if (    iIndex < 0
    158158        ||  iIndex >= __LIBC_TLS_MAX
    159         ||  __atomic_test_bit(&auBitmap[0], iIndex)
     159        ||  !__atomic_test_bit(&auBitmap[0], iIndex)
    160160            )
    161161    {
     
    180180    if (    iIndex < 0
    181181        ||  iIndex >= __LIBC_TLS_MAX
    182         ||  __atomic_test_bit(&auBitmap[0], iIndex)
     182        ||  !__atomic_test_bit(&auBitmap[0], iIndex)
    183183            )
    184184    {
Note: See TracChangeset for help on using the changeset viewer.