summaryrefslogtreecommitdiffstats
path: root/po/fr/man2/wait.2.po
diff options
context:
space:
mode:
Diffstat (limited to 'po/fr/man2/wait.2.po')
-rw-r--r--po/fr/man2/wait.2.po145
1 files changed, 127 insertions, 18 deletions
diff --git a/po/fr/man2/wait.2.po b/po/fr/man2/wait.2.po
index 112b9e38..2a6242ad 100644
--- a/po/fr/man2/wait.2.po
+++ b/po/fr/man2/wait.2.po
@@ -20,9 +20,9 @@
# Jean-Pierre Giraud <jean-pierregiraud@neuf.fr>, 2022-2024.
msgid ""
msgstr ""
-"Project-Id-Version: perkamon\n"
-"POT-Creation-Date: 2024-03-01 17:13+0100\n"
-"PO-Revision-Date: 2024-01-19 10:24+0100\n"
+"Project-Id-Version: manpages-l10n 4.22.0\n"
+"POT-Creation-Date: 2024-06-01 06:34+0200\n"
+"PO-Revision-Date: 2024-06-02 11:31+0200\n"
"Last-Translator: Jean-Pierre Giraud <jean-pierregiraud@neuf.fr>\n"
"Language-Team: French <debian-l10n-french@lists.debian.org>\n"
"Language: fr\n"
@@ -30,7 +30,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: Lokalize 20.12.0\n"
+"X-Generator: Lokalize 22.12.3\n"
#. type: TH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
@@ -40,16 +40,16 @@ msgid "wait"
msgstr "wait"
#. type: TH
-#: archlinux fedora-40 fedora-rawhide mageia-cauldron
+#: archlinux debian-unstable opensuse-tumbleweed
#, no-wrap
-msgid "2023-10-31"
-msgstr "31 octobre 2023"
+msgid "2024-05-02"
+msgstr "2 mai 2024"
#. type: TH
-#: archlinux fedora-40 fedora-rawhide mageia-cauldron
+#: archlinux debian-unstable
#, no-wrap
-msgid "Linux man-pages 6.06"
-msgstr "Pages du manuel de Linux 6.06"
+msgid "Linux man-pages 6.8"
+msgstr "Pages du manuel de Linux 6.8"
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
@@ -1371,13 +1371,13 @@ msgid "Program source"
msgstr "Source du programme"
#. type: Plain text
-#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
-#: opensuse-tumbleweed
+#: archlinux debian-unstable opensuse-tumbleweed
#, no-wrap
msgid ""
"#include E<lt>stdint.hE<gt>\n"
"#include E<lt>stdio.hE<gt>\n"
"#include E<lt>stdlib.hE<gt>\n"
+"#include E<lt>sys/types.hE<gt>\n"
"#include E<lt>sys/wait.hE<gt>\n"
"#include E<lt>unistd.hE<gt>\n"
"\\&\n"
@@ -1424,6 +1424,7 @@ msgstr ""
"#include E<lt>stdint.hE<gt>\n"
"#include E<lt>stdio.hE<gt>\n"
"#include E<lt>stdlib.hE<gt>\n"
+"#include E<lt>sys/types.hE<gt>\n"
"#include E<lt>sys/wait.hE<gt>\n"
"#include E<lt>unistd.hE<gt>\n"
"\\&\n"
@@ -1617,16 +1618,118 @@ msgstr ""
"}\n"
#. type: TH
-#: debian-unstable opensuse-tumbleweed
+#: fedora-40 fedora-rawhide mageia-cauldron
+#, no-wrap
+msgid "2023-10-31"
+msgstr "31 octobre 2023"
+
+#. type: TH
+#: fedora-40 mageia-cauldron
+#, no-wrap
+msgid "Linux man-pages 6.06"
+msgstr "Pages du manuel de Linux 6.06"
+
+#. type: Plain text
+#: fedora-40 fedora-rawhide mageia-cauldron
#, no-wrap
-msgid "2023-05-03"
-msgstr "3 mai 2023"
+msgid ""
+"#include E<lt>stdint.hE<gt>\n"
+"#include E<lt>stdio.hE<gt>\n"
+"#include E<lt>stdlib.hE<gt>\n"
+"#include E<lt>sys/wait.hE<gt>\n"
+"#include E<lt>unistd.hE<gt>\n"
+"\\&\n"
+"int\n"
+"main(int argc, char *argv[])\n"
+"{\n"
+" int wstatus;\n"
+" pid_t cpid, w;\n"
+"\\&\n"
+" cpid = fork();\n"
+" if (cpid == -1) {\n"
+" perror(\"fork\");\n"
+" exit(EXIT_FAILURE);\n"
+" }\n"
+"\\&\n"
+" if (cpid == 0) { /* Code executed by child */\n"
+" printf(\"Child PID is %jd\\en\", (intmax_t) getpid());\n"
+" if (argc == 1)\n"
+" pause(); /* Wait for signals */\n"
+" _exit(atoi(argv[1]));\n"
+"\\&\n"
+" } else { /* Code executed by parent */\n"
+" do {\n"
+" w = waitpid(cpid, &wstatus, WUNTRACED | WCONTINUED);\n"
+" if (w == -1) {\n"
+" perror(\"waitpid\");\n"
+" exit(EXIT_FAILURE);\n"
+" }\n"
+"\\&\n"
+" if (WIFEXITED(wstatus)) {\n"
+" printf(\"exited, status=%d\\en\", WEXITSTATUS(wstatus));\n"
+" } else if (WIFSIGNALED(wstatus)) {\n"
+" printf(\"killed by signal %d\\en\", WTERMSIG(wstatus));\n"
+" } else if (WIFSTOPPED(wstatus)) {\n"
+" printf(\"stopped by signal %d\\en\", WSTOPSIG(wstatus));\n"
+" } else if (WIFCONTINUED(wstatus)) {\n"
+" printf(\"continued\\en\");\n"
+" }\n"
+" } while (!WIFEXITED(wstatus) && !WIFSIGNALED(wstatus));\n"
+" exit(EXIT_SUCCESS);\n"
+" }\n"
+"}\n"
+msgstr ""
+"#include E<lt>stdint.hE<gt>\n"
+"#include E<lt>stdio.hE<gt>\n"
+"#include E<lt>stdlib.hE<gt>\n"
+"#include E<lt>sys/wait.hE<gt>\n"
+"#include E<lt>unistd.hE<gt>\n"
+"\\&\n"
+"int\n"
+"main(int argc, char *argv[])\n"
+"{\n"
+" int wstatus;\n"
+" pid_t cpid, w;\n"
+"\\&\n"
+" cpid = fork();\n"
+" if (cpid == -1) {\n"
+" perror(\"fork\");\n"
+" exit(EXIT_FAILURE);\n"
+" }\n"
+"\\&\n"
+" if (cpid == 0) { /* Code exécuté par l'enfant */\n"
+" printf(\"Child PID is %jd\\en\", (intmax_t) getpid());\n"
+" if (argc == 1)\n"
+" pause(); /* Attendre un signal */\n"
+" _exit(atoi(argv[1]));\n"
+"\\&\n"
+" } else { /* Code exécuté par le parent */\n"
+" do {\n"
+" w = waitpid(cpid, &wstatus, WUNTRACED | WCONTINUED);\n"
+" if (w == -1) {\n"
+" perror(\"waitpid\");\n"
+" exit(EXIT_FAILURE);\n"
+" }\n"
+"\\&\n"
+" if (WIFEXITED(wstatus)) {\n"
+" printf(\"terminé, code=%d\\en\", WEXITSTATUS(wstatus));\n"
+" } else if (WIFSIGNALED(wstatus)) {\n"
+" printf(\"tué par le signal %d\\en\", WTERMSIG(wstatus));\n"
+" } else if (WIFSTOPPED(wstatus)) {\n"
+" printf(\"arrêté par le signal %d\\en\", WSTOPSIG(wstatus));\n"
+" } else if (WIFCONTINUED(wstatus)) {\n"
+" printf(\"relancé\\en\");\n"
+" }\n"
+" } while (!WIFEXITED(wstatus) && !WIFSIGNALED(wstatus));\n"
+" exit(EXIT_SUCCESS);\n"
+" }\n"
+"}\n"
#. type: TH
-#: debian-unstable opensuse-tumbleweed
+#: fedora-rawhide
#, no-wrap
-msgid "Linux man-pages 6.05.01"
-msgstr "Pages du manuel de Linux 6.05.01"
+msgid "Linux man-pages 6.7"
+msgstr "Pages du manuel de Linux 6.7"
#. type: TH
#: opensuse-leap-15-6
@@ -1639,3 +1742,9 @@ msgstr "30 mars 2023"
#, no-wrap
msgid "Linux man-pages 6.04"
msgstr "Pages du manuel de Linux 6.04"
+
+#. type: TH
+#: opensuse-tumbleweed
+#, no-wrap
+msgid "Linux man-pages (unreleased)"
+msgstr "Pages du manuel de Linux (non publiées)"