optimize out setting up robust list with kernel when not needed
authorRich Felker <dalias@aerifal.cx>
Fri, 10 Apr 2015 04:54:48 +0000 (00:54 -0400)
committerRich Felker <dalias@aerifal.cx>
Fri, 10 Apr 2015 04:54:48 +0000 (00:54 -0400)
commit4e98cce1c529a304d7b55b5455078b9532f93e9b
treea824ce64116146e20de6264fe4e91405fd1a2124
parent12e1e324683a1d381b7f15dd36c99b37dd44d940
optimize out setting up robust list with kernel when not needed

as a result of commit 12e1e324683a1d381b7f15dd36c99b37dd44d940, kernel
processing of the robust list is only needed for process-shared
mutexes. previously the first attempt to lock any owner-tracked mutex
resulted in robust list initialization and a set_robust_list syscall.
this is no longer necessary, and since the kernel's record of the
robust list must now be cleared at thread exit time for detached
threads, optimizing it out is more worthwhile than before too.
src/env/__init_tls.c
src/process/fork.c
src/thread/pthread_create.c
src/thread/pthread_mutex_trylock.c