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/malloc/tfree.c

    • Property cvs2svn:cvs-rev changed from 1.3 to 1.4
    r2253 r2254  
    88#include <sys/fmutex.h>
    99#include <emx/umalloc.h>
     10
     11
    1012
    11 void _tfree (void *block)
     13void _tfree(void *block)
    1214{
    13   _um_free_maybe_lock (block, 1);
     15    LIBCLOG_ENTER("block=%p\n", block);
     16    _um_free_maybe_lock(block, 1);
     17    LIBCLOG_RETURN_VOID();
    1418}
Note: See TracChangeset for help on using the changeset viewer.