Ignore:
Timestamp:
Dec 24, 2002, 8:44:35 AM (23 years ago)
Author:
umoeller
Message:

Misc fixes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/helpers/threads.c

    r229 r238  
    390390    }
    391391
    392     return (ulrc);
     392    return ulrc;
    393393}
    394394
     
    477477    }
    478478
    479     return (ulrc);
     479    return ulrc;
    480480}
    481481
     
    526526    }
    527527
    528     return (pArray);
     528    return pArray;
    529529}
    530530
     
    577577    {
    578578        pti->fExit = TRUE;
    579         return (TRUE);
    580     }
    581     return (FALSE);
     579        return TRUE;
     580    }
     581    return FALSE;
    582582}
    583583
     
    605605            DosWaitThread(&pti->tid, DCWW_WAIT);
    606606            pti->tid = NULLHANDLE;
    607             return (TRUE);
     607            return TRUE;
    608608        }
    609     return (FALSE);
     609    return FALSE;
    610610}
    611611
     
    624624        thrWait(pti);
    625625    }
    626     return (TRUE);
     626    return TRUE;
    627627}
    628628
     
    649649        DosKillThread(pti->tid);
    650650    }
    651     return (TRUE);
     651    return TRUE;
    652652}
    653653
     
    662662{
    663663    if (pti)
    664         return (pti->tid);
    665 
    666     return (NULLHANDLE);
     664        return pti->tid;
     665
     666    return NULLHANDLE;
    667667}
    668668
     
    691691        if (ptib)
    692692            if (ptib->tib_ptib2)
    693                 return (ptib->tib_ptib2->tib2_ulpri);
    694     return (0);
    695 }
    696 
    697 
     693                return ptib->tib_ptib2->tib2_ulpri;
     694    return 0;
     695}
     696
     697
Note: See TracChangeset for help on using the changeset viewer.