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/b_fsDirCurrentGet.c

    • Property cvs2svn:cvs-rev changed from 1.3 to 1.4
    r2253 r2254  
    8484    int rc = __libc_back_fsMutexRequest();
    8585    if (rc)
    86         LIBCLOG_RETURN_INT(rc);
     86        LIBCLOG_RETURN_INT(rc);
    8787
    8888    /*
     
    132132                if (memicmp(&szNativePath[0], __libc_gszUnixRoot, __libc_gcchUnixRoot))
    133133                {
    134                     LIBC_ASSERTM_FAILED("Current directory have been changed while in unixroot! unixroot=%s curdir=%s\n",
     134                    LIBC_ASSERTM_FAILED("Current directory ha been changed while in unixroot! unixroot=%s curdir=%s\n",
    135135                                        __libc_gszUnixRoot, &szNativePath[0]);
    136136                    __libc_gfInUnixTree = 0;
     
    166166            }
    167167            else
    168                 LIBCLOG_RETURN_INT(-ERANGE);
     168                LIBCLOG_RETURN_INT(-ERANGE);
    169169        }
    170170        /* Native errors. */
     
    174174    __libc_back_fsMutexRelease();
    175175    rc = -__libc_native2errno(rc);
    176     LIBCLOG_RETURN_INT(rc);
     176    LIBCLOG_RETURN_INT(rc);
    177177}
    178178
Note: See TracChangeset for help on using the changeset viewer.