diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-17 10:52:33 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-17 10:52:33 +0000 |
commit | 2c3307fb903f427be3d021c5780b75cac9af2ce8 (patch) | |
tree | 65cf431f40b7481d81ae2dfce9576342686448f7 /templates/man3/pthread_getattr_default_np.3.pot | |
parent | Releasing progress-linux version 4.22.0-1~progress7.99u1. (diff) | |
download | manpages-l10n-2c3307fb903f427be3d021c5780b75cac9af2ce8.tar.xz manpages-l10n-2c3307fb903f427be3d021c5780b75cac9af2ce8.zip |
Merging upstream version 4.23.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'templates/man3/pthread_getattr_default_np.3.pot')
-rw-r--r-- | templates/man3/pthread_getattr_default_np.3.pot | 109 |
1 files changed, 22 insertions, 87 deletions
diff --git a/templates/man3/pthread_getattr_default_np.3.pot b/templates/man3/pthread_getattr_default_np.3.pot index 25d058f9..27389869 100644 --- a/templates/man3/pthread_getattr_default_np.3.pot +++ b/templates/man3/pthread_getattr_default_np.3.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2024-03-01 17:04+0100\n" +"POT-Creation-Date: 2024-06-01 06:13+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -24,15 +24,15 @@ msgid "pthread_getattr_default_np" msgstr "" #. type: TH -#: archlinux fedora-40 fedora-rawhide mageia-cauldron +#: archlinux debian-unstable opensuse-tumbleweed #, no-wrap -msgid "2023-10-31" +msgid "2024-05-02" msgstr "" #. type: TH -#: archlinux fedora-40 fedora-rawhide mageia-cauldron +#: archlinux debian-unstable #, no-wrap -msgid "Linux man-pages 6.06" +msgid "Linux man-pages 6.8" msgstr "" #. type: SH @@ -316,7 +316,8 @@ msgid "Program source" msgstr "" #. type: Plain text -#: archlinux fedora-40 fedora-rawhide mageia-cauldron +#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron +#: opensuse-tumbleweed #, no-wrap msgid "" "#define _GNU_SOURCE\n" @@ -439,8 +440,8 @@ msgstr "" #. type: Plain text #: debian-bookworm msgid "" -"These functions are nonstandard GNU extensions; hence the suffix " -"\"_np\" (nonportable) in their names." +"These functions are nonstandard GNU extensions; hence the suffix \"_np\" " +"(nonportable) in their names." msgstr "" #. type: Plain text @@ -576,93 +577,21 @@ msgid "" msgstr "" #. type: TH -#: debian-unstable opensuse-tumbleweed +#: fedora-40 fedora-rawhide mageia-cauldron #, no-wrap -msgid "2023-07-20" +msgid "2023-10-31" msgstr "" #. type: TH -#: debian-unstable opensuse-tumbleweed +#: fedora-40 mageia-cauldron #, no-wrap -msgid "Linux man-pages 6.05.01" +msgid "Linux man-pages 6.06" msgstr "" -#. type: Plain text -#: debian-unstable opensuse-tumbleweed +#. type: TH +#: fedora-rawhide #, no-wrap -msgid "" -"#define _GNU_SOURCE\n" -"#include E<lt>err.hE<gt>\n" -"#include E<lt>errno.hE<gt>\n" -"#include E<lt>pthread.hE<gt>\n" -"#include E<lt>stdio.hE<gt>\n" -"#include E<lt>stdlib.hE<gt>\n" -"\\&\n" -"static void\n" -"display_pthread_attr(pthread_attr_t *attr)\n" -"{\n" -" int s;\n" -" size_t stacksize;\n" -" size_t guardsize;\n" -" int policy;\n" -" struct sched_param schedparam;\n" -" int detachstate;\n" -" int inheritsched;\n" -"\\&\n" -" s = pthread_attr_getstacksize(attr, &stacksize);\n" -" if (s != 0)\n" -" errc(EXIT_FAILURE, s, \"pthread_attr_getstacksize\");\n" -" printf(\"Stack size: %zd\\en\", stacksize);\n" -"\\&\n" -" s = pthread_attr_getguardsize(attr, &guardsize);\n" -" if (s != 0)\n" -" errc(EXIT_FAILURE, s, \"pthread_attr_getguardsize\");\n" -" printf(\"Guard size: %zd\\en\", guardsize);\n" -"\\&\n" -" s = pthread_attr_getschedpolicy(attr, &policy);\n" -" if (s != 0)\n" -" errc(EXIT_FAILURE, s, \"pthread_attr_getschedpolicy\");\n" -" printf(\"Scheduling policy: %s\\en\",\n" -" (policy == SCHED_FIFO) ? \"SCHED_FIFO\" :\n" -" (policy == SCHED_RR) ? \"SCHED_RR\" :\n" -" (policy == SCHED_OTHER) ? \"SCHED_OTHER\" : \"[unknown]\");\n" -"\\&\n" -" s = pthread_attr_getschedparam(attr, &schedparam);\n" -" if (s != 0)\n" -" errc(EXIT_FAILURE, s, \"pthread_attr_getschedparam\");\n" -" printf(\"Scheduling priority: %d\\en\", schedparam.sched_priority);\n" -"\\&\n" -" s = pthread_attr_getdetachstate(attr, &detachstate);\n" -" if (s != 0)\n" -" errc(EXIT_FAILURE, s, \"pthread_attr_getdetachstate\");\n" -" printf(\"Detach state: %s\\en\",\n" -" (detachstate == PTHREAD_CREATE_DETACHED) ? \"DETACHED\" :\n" -" (detachstate == PTHREAD_CREATE_JOINABLE) ? \"JOINABLE\" :\n" -" \"???\");\n" -"\\&\n" -" s = pthread_attr_getinheritsched(attr, &inheritsched);\n" -" if (s != 0)\n" -" errc(EXIT_FAILURE, s, \"pthread_attr_getinheritsched\");\n" -" printf(\"Inherit scheduler: %s\\en\",\n" -" (inheritsched == PTHREAD_INHERIT_SCHED) ? \"INHERIT\" :\n" -" (inheritsched == PTHREAD_EXPLICIT_SCHED) ? \"EXPLICIT\" :\n" -" \"???\");\n" -"}\n" -"\\&\n" -"int\n" -"main(void)\n" -"{\n" -" int s;\n" -" pthread_attr_t attr;\n" -"\\&\n" -" s = pthread_getattr_default_np(&attr);\n" -" if (s != 0)\n" -" errc(EXIT_FAILURE, s, \"pthread_getattr_default_np\");\n" -"\\&\n" -" display_pthread_attr(&attr);\n" -"\\&\n" -" exit(EXIT_SUCCESS);\n" -"}\n" +msgid "Linux man-pages 6.7" msgstr "" #. type: TH @@ -676,3 +605,9 @@ msgstr "" #, no-wrap msgid "Linux man-pages 6.04" msgstr "" + +#. type: TH +#: opensuse-tumbleweed +#, no-wrap +msgid "Linux man-pages (unreleased)" +msgstr "" |