TSF一覧

"[C++] UNIX上でのC++ソフトウェア設計の定石 (6)"で、"SUSv3に、TSF(Thread Safe Function) の一覧はないと思う" と書きましたが、ありますね。


正式な規格ではなくRationaleとしてですが、XSI Supported Functionsのところに、

On XSI-conformant systems, the symbolic constant _POSIX_THREAD_SAFE_FUNCTIONS is always defined. Therefore, the following functions are always supported:


asctime_r() ctime_r() flockfile() ftrylockfile() funlockfile()
getc_unlocked() getchar_unlocked() getgrgid_r() getgrnam_r()
getpwnam_r() getpwuid_r() gmtime_r() localtime_r() putc_unlocked()
putchar_unlocked() rand_r() readdir_r() strerror_r() strtok_r()

という記述があります。実質的にSUSv3で定義されたTSFの一覧...だと思います。