CVSROOT: /cvs Module name: src Changes by: t...@cvs.openbsd.org 2016/06/27 09:33:40
Modified files: lib/libc/stdlib: malloc.c Log message: defer munmap to after unlocking malloc. this can (unfortunately) be an expensive syscall, and we don't want to tie up other threads. there's no need to hold the lock, so defer it to afterwards. from Michael McConville ok deraadt