On 05/22/2013 05:24 AM, Peter Zijlstra wrote: > Do we still need this with the glibc __pthread_* static initialization?
Sadly we do. We need to deal with the two things that cause allocation in our code (because they loop back into our code via malloc()->malloc_init()->pthread_mutex_init() ). The first one was the glibc trick to avoid the malloc() caused by dlsym(). The second one is the malloc() we do when we allocate new lock. Static allocation deals with that one. Thanks, Sasha -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

