summaryrefslogtreecommitdiffstats
path: root/po/nl/man2/fork.2.po
diff options
context:
space:
mode:
Diffstat (limited to 'po/nl/man2/fork.2.po')
-rw-r--r--po/nl/man2/fork.2.po146
1 files changed, 127 insertions, 19 deletions
diff --git a/po/nl/man2/fork.2.po b/po/nl/man2/fork.2.po
index b4dc95d0..4d3de3e7 100644
--- a/po/nl/man2/fork.2.po
+++ b/po/nl/man2/fork.2.po
@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Project-Id-Version: manpages-l10n 2.15\n"
-"POT-Creation-Date: 2024-03-01 16:56+0100\n"
+"POT-Creation-Date: 2024-06-01 05:50+0200\n"
"PO-Revision-Date: 2023-11-09 20:08+0100\n"
"Last-Translator: Luc Castermans <luc.castermans@gmail.com>\n"
"Language-Team: Dutch <>\n"
@@ -27,16 +27,17 @@ msgid "fork"
msgstr "fork"
#. type: TH
-#: archlinux fedora-40 fedora-rawhide mageia-cauldron
+#: archlinux debian-unstable opensuse-tumbleweed
#, no-wrap
-msgid "2023-10-31"
-msgstr "31 oktober 2023"
+msgid "2024-05-02"
+msgstr "2 mei 2024"
#. type: TH
-#: archlinux fedora-40 fedora-rawhide mageia-cauldron
-#, no-wrap
-msgid "Linux man-pages 6.06"
-msgstr "Linux man-pages 6.06"
+#: archlinux debian-unstable
+#, fuzzy, no-wrap
+#| msgid "Linux man-pages 6.7"
+msgid "Linux man-pages 6.8"
+msgstr "Linux man-pages 6.7"
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
@@ -511,8 +512,8 @@ msgstr ""
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
-"An attempt was made to create a child process in a PID namespace whose "
-"\"init\" process has terminated. See B<pid_namespaces>(7)."
+"An attempt was made to create a child process in a PID namespace whose \"init"
+"\" process has terminated. See B<pid_namespaces>(7)."
msgstr ""
"Een poging werd gedaan om een kind-proces aan te maken in de PID naamruimte "
"wiens \"init\" proces werd beƫindigd. Zie B<pid_namespaces>(7)."
@@ -650,14 +651,44 @@ msgid "See B<pipe>(2) and B<wait>(2) for more examples."
msgstr "Zie B<pipe>(2) en B<wait>(2) voor meer voorbeelden."
#. type: Plain text
-#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
-#: opensuse-tumbleweed
-#, no-wrap
+#: archlinux debian-unstable opensuse-tumbleweed
+#, fuzzy, no-wrap
+#| msgid ""
+#| "#include E<lt>signal.hE<gt>\n"
+#| "#include E<lt>stdint.hE<gt>\n"
+#| "#include E<lt>stdio.hE<gt>\n"
+#| "#include E<lt>stdlib.hE<gt>\n"
+#| "#include E<lt>unistd.hE<gt>\n"
+#| "\\&\n"
+#| "int\n"
+#| "main(void)\n"
+#| "{\n"
+#| " pid_t pid;\n"
+#| "\\&\n"
+#| " if (signal(SIGCHLD, SIG_IGN) == SIG_ERR) {\n"
+#| " perror(\"signal\");\n"
+#| " exit(EXIT_FAILURE);\n"
+#| " }\n"
+#| " pid = fork();\n"
+#| " switch (pid) {\n"
+#| " case -1:\n"
+#| " perror(\"fork\");\n"
+#| " exit(EXIT_FAILURE);\n"
+#| " case 0:\n"
+#| " puts(\"Child exiting.\");\n"
+#| " exit(EXIT_SUCCESS);\n"
+#| " default:\n"
+#| " printf(\"Child is PID %jd\\en\", (intmax_t) pid);\n"
+#| " puts(\"Parent exiting.\");\n"
+#| " exit(EXIT_SUCCESS);\n"
+#| " }\n"
+#| "}\n"
msgid ""
"#include E<lt>signal.hE<gt>\n"
"#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>unistd.hE<gt>\n"
"\\&\n"
"int\n"
@@ -824,16 +855,86 @@ msgstr ""
"}\n"
#. type: TH
-#: debian-unstable opensuse-tumbleweed
+#: fedora-40 fedora-rawhide mageia-cauldron
#, no-wrap
-msgid "2023-05-03"
-msgstr "3 mei 2023"
+msgid "2023-10-31"
+msgstr "31 oktober 2023"
#. type: TH
-#: debian-unstable opensuse-tumbleweed
+#: fedora-40 mageia-cauldron
#, no-wrap
-msgid "Linux man-pages 6.05.01"
-msgstr "Linux man-pagina's 6.05.01"
+msgid "Linux man-pages 6.06"
+msgstr "Linux man-pages 6.06"
+
+#. type: Plain text
+#: fedora-40 fedora-rawhide mageia-cauldron
+#, no-wrap
+msgid ""
+"#include E<lt>signal.hE<gt>\n"
+"#include E<lt>stdint.hE<gt>\n"
+"#include E<lt>stdio.hE<gt>\n"
+"#include E<lt>stdlib.hE<gt>\n"
+"#include E<lt>unistd.hE<gt>\n"
+"\\&\n"
+"int\n"
+"main(void)\n"
+"{\n"
+" pid_t pid;\n"
+"\\&\n"
+" if (signal(SIGCHLD, SIG_IGN) == SIG_ERR) {\n"
+" perror(\"signal\");\n"
+" exit(EXIT_FAILURE);\n"
+" }\n"
+" pid = fork();\n"
+" switch (pid) {\n"
+" case -1:\n"
+" perror(\"fork\");\n"
+" exit(EXIT_FAILURE);\n"
+" case 0:\n"
+" puts(\"Child exiting.\");\n"
+" exit(EXIT_SUCCESS);\n"
+" default:\n"
+" printf(\"Child is PID %jd\\en\", (intmax_t) pid);\n"
+" puts(\"Parent exiting.\");\n"
+" exit(EXIT_SUCCESS);\n"
+" }\n"
+"}\n"
+msgstr ""
+"#include E<lt>signal.hE<gt>\n"
+"#include E<lt>stdint.hE<gt>\n"
+"#include E<lt>stdio.hE<gt>\n"
+"#include E<lt>stdlib.hE<gt>\n"
+"#include E<lt>unistd.hE<gt>\n"
+"\\&\n"
+"int\n"
+"main(void)\n"
+"{\n"
+" pid_t pid;\n"
+"\\&\n"
+" if (signal(SIGCHLD, SIG_IGN) == SIG_ERR) {\n"
+" perror(\"signal\");\n"
+" exit(EXIT_FAILURE);\n"
+" }\n"
+" pid = fork();\n"
+" switch (pid) {\n"
+" case -1:\n"
+" perror(\"fork\");\n"
+" exit(EXIT_FAILURE);\n"
+" case 0:\n"
+" puts(\"Child exiting.\");\n"
+" exit(EXIT_SUCCESS);\n"
+" default:\n"
+" printf(\"Child is PID %jd\\en\", (intmax_t) pid);\n"
+" puts(\"Parent exiting.\");\n"
+" exit(EXIT_SUCCESS);\n"
+" }\n"
+"}\n"
+
+#. type: TH
+#: fedora-rawhide
+#, no-wrap
+msgid "Linux man-pages 6.7"
+msgstr "Linux man-pages 6.7"
#. type: TH
#: opensuse-leap-15-6
@@ -846,3 +947,10 @@ msgstr "30 maart 2023"
#, no-wrap
msgid "Linux man-pages 6.04"
msgstr "Linux man-pages 6.04"
+
+#. type: TH
+#: opensuse-tumbleweed
+#, fuzzy, no-wrap
+#| msgid "Linux man-pages 6.7"
+msgid "Linux man-pages (unreleased)"
+msgstr "Linux man-pages 6.7"