Wez Furlong

Browse archives
Conference Presentations
Subscribe. (circulation 746)
Comments. (circulation 2)

Search powered by Google

I am Wez Furlong, Director of Engineering at Message Systems. My team is responsible for the fastest MTA on Earth.

I'm also a PHP Core developer and OpenSource contributor, residing in Maryland with Juliette, Xander and Lily. (read more)

18th March 2007 @ 02:45 EDT

We've migrated our port of Solaris umem from SourceForge to OmniTI Labs, and have finally gotten around to making a source release.

You can find the project page here, which includes a link to the downloadable source.

The tarball will build you libumem and libumem_malloc. The latter version can be used as an LD_PRELOAD to replace malloc for a target process, which is useful for debugging. The former is more useful when deliberately linked into an app that wants to take advantage of the slab allocator APIs directly.

I'm interested to see if using this in PHP will lead to performance gains, but currently lack the time to do any benchmarking. I doubt that performance will suddenly improve just by preloading libumem_malloc, but there might be a gain if the zend engine allocator were tied into libumem.

Perhaps someone reading this blog entry does have the time to investigate and could post the results?

by Wez Furlong in .
Post a comment
19th August @ 11:52 EDT

Wez, thanks for porting libumem to linux, I could get it running in my embedded system in no time. I was wondering what post processing tools you're using to analyze memleaks. Sun's site recommends using mdb (modular debugger) with commands like ::findleaks. Is there a linux port of mdb?

by Prasanna in .
19th August @ 13:52 EDT

I looked at porting mdb, but it's a lot of work. On linux we use valgrind to track leaks.

by Wez in .
Post a comment