Ignore:
Timestamp:
Jul 17, 2005, 2:25:44 PM (20 years ago)
Author:
bird
Message:

o LIBC_ASSERT*() are for internal libc errors, LIBCLOG_ERROR*() are

for user related error. Big code adjustements.

o Fixed a few smaller issues.
o Started fixing exec() backend.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/emx/src/lib/sys/DosCloseMutexSemEx.c

    • Property cvs2svn:cvs-rev changed from 1.2 to 1.3
    r2253 r2254  
    5555     */
    5656    if (!hmtx)
    57         LIBCLOG_RETURN_INT(ERROR_INVALID_HANDLE);
     57        LIBCLOG_RETURN_INT(ERROR_INVALID_HANDLE);
    5858
    5959    /*
     
    7777
    7878    FS_RESTORE();
    79     LIBCLOG_RETURN_INT(rc);
     79    if (!rc)
     80        LIBCLOG_RETURN_INT(rc);
     81    LIBCLOG_ERROR_RETURN_INT(rc);
    8082}
    8183
Note: See TracChangeset for help on using the changeset viewer.