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

    • Property cvs2svn:cvs-rev changed from 1.3 to 1.4
    r2253 r2254  
    183183        LIBC_ASSERTM_FAILED("Failed to allocate more chunks. rc=%d\n", rc);
    184184        _fmutex_release(&_sys_gmtxHimem);
    185         LIBCLOG_RETURN_P(NULL);
     185        LIBCLOG_RETURN_P(NULL);
    186186    }
    187187    /* Commit the first page. */
     
    192192        DosFreeMemEx(pv);
    193193        _fmutex_release(&_sys_gmtxHimem);
    194         LIBCLOG_RETURN_P(NULL);
     194        LIBCLOG_RETURN_P(NULL);
    195195    }
    196196
     
    241241
    242242    LIBC_ASSERTM_FAILED("couldn't find pool which chunk %p belongs in!\n", (void *)pChunk);
    243     LIBCLOG_RETURN_VOID();
     243    LIBCLOG_RETURN_VOID();
    244244}
    245245
     
    364364    {
    365365        LIBC_ASSERTM_FAILED("Failed to allocate chunk! rc=%d cbAlloc=%d *pcb=%d\n", rc, cbAlloc, *pcb);
    366         LIBCLOG_RETURN_P(NULL);
     366        LIBCLOG_RETURN_P(NULL);
    367367    }
    368368
     
    401401
    402402    DosFreeMemEx(pv);
    403     LIBCLOG_RETURN_P(NULL);
     403    LIBCLOG_RETURN_P(NULL);
    404404}
    405405
     
    459459                                        pv, cb, off, offEnd, pChunk->pv, pChunk->cb, pChunk->cbUncommitted);
    460460                    _fmutex_release(&_sys_gmtxHimem);
    461                     LIBCLOG_RETURN_VOID();
     461                    LIBCLOG_RETURN_VOID();
    462462                }
    463463
Note: See TracChangeset for help on using the changeset viewer.