I've uploaded man-pages-3.18 (my one hundredth release as maintainer!) into the release directory (or view the online pages). Notable changes in man-pages-3.18 are:
- 4 new pages describing character sets: armscii-8(7), iso_8859-11(7), iso_8859-4(7), and iso _8859-6(7). Thanks once again to Lefteris Dimitroulakis for contributing!
- A new pthread_kill(3) page documents pthread_kill().
- A new pthread_kill_other_threads_np(3) page documents pthread_kill_other_threads_np().
- A new pthread_sigmask(3) page documents pthread_sigmask().
- The clock_getres(2) page was moved from Section 3 to Section 2 (since the interfaces it describes really are system calls, not library functions), and adds a description of CLOCK_MONOTONIC_RAW, new in 2.6.28.
- Some bugs were fixed in select_tut(2) and many changes and tidy-ups were made to the text.
2 comments:
There is still a bug in the select_tut(2) page:
sigemptyset(empty_mask);
should be
sigemptyset(&empty_mask);
Thanks Kam-Yung. Fixed now.
Post a Comment