summaryrefslogtreecommitdiffstats
path: root/po/ko/man2/fork.2.po
diff options
context:
space:
mode:
Diffstat (limited to 'po/ko/man2/fork.2.po')
-rw-r--r--po/ko/man2/fork.2.po121
1 files changed, 104 insertions, 17 deletions
diff --git a/po/ko/man2/fork.2.po b/po/ko/man2/fork.2.po
index cd4ebf74..343d6a09 100644
--- a/po/ko/man2/fork.2.po
+++ b/po/ko/man2/fork.2.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: manpages-l10n\n"
-"POT-Creation-Date: 2024-03-01 16:56+0100\n"
+"POT-Creation-Date: 2024-06-01 05:50+0200\n"
"PO-Revision-Date: 2000-04-27 08:57+0900\n"
"Last-Translator: 정강훈 <skyeyes@soback.kornet.net>\n"
"Language-Team: Korean <translation-team-ko@googlegroups.com>\n"
@@ -23,16 +23,16 @@ 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 "2023년 10월 31일"
+msgid "2024-05-02"
+msgstr "2024년 5월 2일"
#. type: TH
-#: archlinux fedora-40 fedora-rawhide mageia-cauldron
+#: archlinux debian-unstable
#, fuzzy, no-wrap
#| msgid "Linux man-pages 6.03"
-msgid "Linux man-pages 6.06"
+msgid "Linux man-pages 6.8"
msgstr "Linux man-pages 6.03"
#. type: SH
@@ -428,8 +428,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 ""
#. type: TP
@@ -558,8 +558,7 @@ msgid "See B<pipe>(2) and B<wait>(2) for more examples."
msgstr ""
#. type: Plain text
-#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
-#: opensuse-tumbleweed
+#: archlinux debian-unstable opensuse-tumbleweed
#, fuzzy, no-wrap
#| msgid ""
#| " if (signal(SIGCHLD, SIG_IGN) == SIG_ERR) {\n"
@@ -585,6 +584,7 @@ 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>unistd.hE<gt>\n"
"\\&\n"
"int\n"
@@ -740,16 +740,96 @@ msgstr ""
"}\n"
#. type: TH
-#: debian-unstable opensuse-tumbleweed
+#: fedora-40 fedora-rawhide mageia-cauldron
#, no-wrap
-msgid "2023-05-03"
-msgstr "2023년 5월 3일"
+msgid "2023-10-31"
+msgstr "2023년 10월 31일"
#. type: TH
-#: debian-unstable opensuse-tumbleweed
-#, no-wrap
-msgid "Linux man-pages 6.05.01"
-msgstr "Linux man-pages 6.05.01"
+#: fedora-40 mageia-cauldron
+#, fuzzy, no-wrap
+#| msgid "Linux man-pages 6.03"
+msgid "Linux man-pages 6.06"
+msgstr "Linux man-pages 6.03"
+
+#. type: Plain text
+#: fedora-40 fedora-rawhide mageia-cauldron
+#, fuzzy, no-wrap
+#| msgid ""
+#| " 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>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 ""
+" 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
+#, fuzzy, no-wrap
+#| msgid "Linux man-pages 6.03"
+msgid "Linux man-pages 6.7"
+msgstr "Linux man-pages 6.03"
#. type: TH
#: opensuse-leap-15-6
@@ -762,3 +842,10 @@ msgstr "2023년 3월 30일"
#, 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.03"
+msgid "Linux man-pages (unreleased)"
+msgstr "Linux man-pages 6.03"