X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=opt%2Fnothread%2Fmtx_unlock.c;h=97a93a67ac021e8c319c6966a0609859446dc511;hb=62024711e10c2b27e097e0e8876689ae6187e28d;hp=1c11401f7931788068b98ec49bc0ec625d871a22;hpb=bb22ff7ecd9fe8f4641484df12ad629cd8ee27ac;p=pdclib.old diff --git a/opt/nothread/mtx_unlock.c b/opt/nothread/mtx_unlock.c index 1c11401..97a93a6 100644 --- a/opt/nothread/mtx_unlock.c +++ b/opt/nothread/mtx_unlock.c @@ -1,12 +1,13 @@ +#ifndef REGTEST #include int mtx_unlock(mtx_t *mtx) { - if(*mtx) { - *mtx = 0; - return thrd_success; - } else return thrd_error; + if(--(*mtx) >= 0) + return thrd_success; + return thrd_error; } +#endif #ifdef TEST #include <_PDCLIB_test.h>