On Tue, Feb 17, 2009 at 09:59:16PM -0800, Edward Pilatowicz wrote: > ah, so you're malloc/free have different names. then that shouldn't be > a problem as long as you ensure that you're not allocating from the > same backing store as libc/libumem malloc/free.
Hi all, It shouldn't matter in most cases; the only problematic situation is when programs like /bin/vi use sbrk() to allocate memory, then call brk() to free it. libumem will function fine with other sbrk() users. Cheers, - jonathan