aboutsummaryrefslogtreecommitdiffstats
path: root/man3/pthread_once.3
AgeCommit message (Collapse)AuthorFilesLines
2024-05-02man/, share/mk/: Move man*/ to man/Alejandro Colomar1-44/+0
This is a scripted change: $ mkdir man/; $ mv man* man/; $ ln -st . man/man*; $ find share/mk/ -type f \ | xargs grep -l '^MANDIR *:=' \ | xargs sed -i '/^MANDIR *:=/s,$,/man,'; $ find share/mk/dist/ -type f \ | xargs grep -l man \ | xargs sed -i 's,man%,man/%,g'; Link: <https://lore.kernel.org/linux-man/YxcV4h+Xn7cd6+q2@pevik/T/> Cc: Petr Vorel <pvorel@suse.cz> Cc: Jakub Wilk <jwilk@jwilk.net> Cc: Stefan Puiu <stefan.puiu@gmail.com> Signed-off-by: Alejandro Colomar <alx@kernel.org>
2023-10-31man*/: srcfix (Use .P instead of .PP or .LP)Alejandro Colomar1-3/+3
We're trying to "standardize" on a paragraphing macro from the three equivalent ones (P, PP, LP). We (somewhat arbitrarily) agreed on P. Scripted change: $ find man* -type f | xargs sed -i '/\.PP/s/PP/P/' $ find man* -type f | xargs sed -i '/\.LP/s/LP/P/' Suggested-by: "G. Branden Robinson" <branden@debian.org> Cc: Ingo Schwarze <schwarze@openbsd.org> Signed-off-by: Alejandro Colomar <alx@kernel.org>
2023-10-04pthread_*.3: ffix (semantic newlines)Alejandro Colomar1-10/+15
Signed-off-by: Alejandro Colomar <alx@kernel.org>
2023-10-04pthread_*.3: ffix (paragraphing)Alejandro Colomar1-9/+13
Replace blank lines by either a no-op '.', the dummy character '\&', or an appropriate paragraphing macro. I've experimented with two '.' lines before section headings, which may increase readability. Signed-off-by: Alejandro Colomar <alx@kernel.org>
2023-10-04pthread_*.3: Remove AUTHOR section; add copyright; adapt THAlejandro Colomar1-5/+6
Xavier asked that his name be removed from the AUTHOR section, and since we don't use that section in this project, we can just wipe it. Add copyright notices to the pages, with Xavier as the original author, and me, who will maintain them from now on. Xavier ACKed the Linux-man-pages-copyleft license. Adapt the TH line: - Specify the date as (date). - Specify the project name in the 4th arg. - The first arg, the page name, must be the same as the file name. Suggested-by: Xavier Leroy <Xavier.Leroy@inria.fr> Signed-off-by: Alejandro Colomar <alx@kernel.org>
2023-10-04pthread_cond_init.3, pthread_condattr_init.3, pthread_key_create.3, ↵Alejandro Colomar1-12/+12
pthread_mutex_init.3, pthread_mutexattr_setkind_np.3, pthread_once.3: Update the glibc pages with the debian/glibc version of them Signed-off-by: Alejandro Colomar <alx@kernel.org>
2023-10-04pthread_cond_init.3, pthread_condattr_init.3, pthread_key_create.3, ↵Alejandro Colomar1-0/+34
pthread_mutex_init.3, pthread_mutexattr_setkind_np.3, pthread_once.3: Import pages from glibc Signed-off-by: Alejandro Colomar <alx@kernel.org>