pthread_mutex_trylock関数とかのソース

ちょいと見てみたいんですが、どこで入手できるでせう。。。/usr/src/linuxgrepしても出てはこないし・・・。

カーネル関数の_mutex_spin_lockとの繋がりをしらべてまふ。見つかったらここにメモります。

http://www.google.com/codesearch?as_q=pthread_mutex_trylock&btnG=Search+Code&as_lang=c&as_license_restrict=i&as_license=&as_package=pthread&as_filename=&as_case=

これかな? そういえばこんなサービス(Google Source Code)開始させれたんだよね。思い出した。

http://www.kernel.org/pub/software/libs/glibc/

さらにこことかにあるっぽい。

http://ftp.gnu.org/gnu/glibc/

新しいのはこっちか。どーもお騒がせしました。


wget http://ftp.gnu.org/gnu/glibc/glibc-linuxthreads-2.3.4.tar.gz

grep結果

linuxthreads/mutex.c:strong_alias (__pthread_mutex_trylock, pthread_mutex_trylock)

というわけで__pthread_mutex_trylockをしばし読む。