From d6ee7ca3b40ed0c5ba825b9deb493298507c57a7 Mon Sep 17 00:00:00 2001 From: Akihiro MOTOKI Date: Thu, 10 May 2012 00:39:57 +0900 Subject: [PATCH] (split) LDP: snapshots of ja.po and related drafts.. --- draft/man2/getcpu.2 | 102 ++++++++++++++++++++++++++++++++++ draft/man2/migrate_pages.2 | 101 ++++++++++++++++++++++++++++++++++ po4a/numa/po/ja.po | 134 ++++++++++++++++++++++++++++++++++++++------- 3 files changed, 317 insertions(+), 20 deletions(-) create mode 100644 draft/man2/getcpu.2 create mode 100644 draft/man2/migrate_pages.2 diff --git a/draft/man2/getcpu.2 b/draft/man2/getcpu.2 new file mode 100644 index 00000000..e3da18e4 --- /dev/null +++ b/draft/man2/getcpu.2 @@ -0,0 +1,102 @@ +.\" This man page is Copyright (C) 2006 Andi Kleen . +.\" Permission is granted to distribute possibly modified copies +.\" of this page provided the header is included verbatim, +.\" and in case of nontrivial modification author and date +.\" of the modification is added to the header. +.\" 2008, mtk, various edits +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH GETCPU 2 2008\-06\-03 Linux "Linux Programmer's Manual" +.SH 名前 +getcpu \- 呼び出し元スレッドが動作している CPU と NUMA ノードを判定する +.SH 書式 +.nf +\fB#include \fP +.sp +\fBint getcpu(unsigned *\fP\fIcpu\fP\fB, unsigned *\fP\fInode\fP\fB, struct getcpu_cache *\fP\fItcache\fP\fB);\fP +.fi +.SH 説明 +\fBgetcpu\fP() システムコールは、呼び出し元のスレッドやプロセスが +現在動作しているプロセッサやノードの情報を特定し、 +それぞれ引き数 \fIcpu\fP と \fInode\fP が指す整数に書き込む。 +プロセッサ情報は CPU を識別するための一意な小さな整数である。 +ノード情報は NUMAノードを識別するための一意な小さな整数である。 +\fIcpu\fP か \fInode\fP のいずれかが NULL であれば、 +その引き数に対応する情報の書き込みは行われない。 + +このシステムコールの 3 番目の引き数は現在は使われていない。 + +\fIcpu\fP に格納された情報が最新だと保証できるのは、システムコールが呼ばれ +た時点だけである。\fBsched_setaffinity\fP(2) を使って CPU affinity が固定 +されていない限り、カーネルはいつでも CPU を変更してもよい (スケジューラ +はキャッシュが有効に働くように CPU の移動を最小限にしようとするので、 +通常は CPU が変更されることはないが、起きる可能性はある)。 +呼び出し元は、 \fIcpu\fP や \fInode\fP で得られた情報がすでに現在の CPU や +ノードの情報とは異なっている状況を扱えるようにしておかなければならない。 +.SH バージョン +\fBgetcpu\fP() はカーネル 2.6.19 で x86_64 と i386 向けに追加された. +.SH 準拠 +\fBgetcpu\fP() は Linux 固有である。 +.SH 注意 +Linux はこのシステムコールを可能な限り早く実行しようとする。 +\fBgetcpu\fP() は、CPU 毎のデータに対する最適化や NUMA 環境での最適化を +プログラムが行えるようにすることを目的として実装されているからである。 + +glibc はこのシステムコールに対するラッパー関数を提供していない。 +\fBsyscall\fP(2) を使って呼び出すか、 +代わりに \fBsched_getcpu\fP(3) を使用すること。 + +.\" commit 4307d1e5ada595c87f9a4d16db16ba5edb70dcb1 +.\" Author: Ingo Molnar +.\" Date: Wed Nov 7 18:37:48 2007 +0100 +.\" x86: ignore the sys_getcpu() tcache parameter +.\" +.\" ===== Before kernel 2.6.24: ===== +.\" .I tcache +.\" is a pointer to a +.\" .IR "struct getcpu_cache" +.\" that is used as a cache by +.\" .BR getcpu (). +.\" The caller should put the cache into a thread-local variable +.\" if the process is multithreaded, +.\" because the cache cannot be shared between different threads. +.\" .I tcache +.\" can be NULL. +.\" If it is not NULL +.\" .BR getcpu () +.\" will use it to speed up operation. +.\" The information inside the cache is private to the system call +.\" and should not be accessed by the user program. +.\" The information placed in the cache can change between kernel releases. +.\" +.\" When no cache is specified +.\" .BR getcpu () +.\" will be slower, +.\" but always retrieve the current CPU and node information. +.\" With a cache +.\" .BR getcpu () +.\" is faster. +.\" However, the cached information is only updated once per jiffy (see +.\" .BR time (7)). +.\" This means that the information could theoretically be out of date, +.\" although in practice the scheduler's attempt to maintain +.\" soft CPU affinity means that the information is unlikely to change +.\" over the course of the caching interval. +\fItcache\fP 引き数は Linux 2.6.24 以降では使用されない。以前のバージョン +のカーネルでは、この引き数が NULL 以外の場合、この引き数には、呼び出し +元が割り当てたスレッド専用の記憶領域 (thread\-local storage) 内のバッファ +を指すポインタが指定され、このバッファは \fBgetcpu\fP() 用のキャッシュ機構 +を提供するために利用されていた。非常に低い確率だが古い情報を返してしま +うデメリットはあるものの、このキャッシュを使うことで \fBgetcpu\fP() システ +ムコールを高速化できた。このキャッシュ機構はCPU 間でのスレッドの移動時 +に問題になると考えられ、この引き数は今では無視されるようになっている。 +.SH 関連項目 +\fBmbind\fP(2), \fBsched_setaffinity\fP(2), \fBset_mempolicy\fP(2), +\fBsched_getcpu\fP(3), \fBcpuset\fP(7) +.SH この文書について +この man ページは Linux \fIman\-pages\fP プロジェクトのリリース 3.40 の一部 +である。プロジェクトの説明とバグ報告に関する情報は +http://www.kernel.org/doc/man\-pages/ に書かれている。 diff --git a/draft/man2/migrate_pages.2 b/draft/man2/migrate_pages.2 new file mode 100644 index 00000000..61b5d790 --- /dev/null +++ b/draft/man2/migrate_pages.2 @@ -0,0 +1,101 @@ +.\" Hey Emacs! This file is -*- nroff -*- source. +.\" +.\" Copyright 2009 Intel Corporation +.\" Author: Andi Kleen +.\" Based on the move_pages manpage which was +.\" This manpage is Copyright (C) 2006 Silicon Graphics, Inc. +.\" Christoph Lameter +.\" +.\" Permission is granted to make and distribute verbatim copies of this +.\" manual provided the copyright notice and this permission notice are +.\" preserved on all copies. +.\" +.\" Permission is granted to copy and distribute modified versions of this +.\" manual under the conditions for verbatim copying, provided that the +.\" entire resulting derived work is distributed under the terms of a +.\" permission notice identical to this one. +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH MIGRATE_PAGES 2 2010\-11\-01 Linux "Linux Programmer's Manual" +.SH 名前 +migrate_pages \- プロセスの全ページを別のノード集合に移動する +.SH 書式 +.nf +\fB#include \fP +.sp +\fBlong migrate_pages(int \fP\fIpid\fP\fB, unsigned long \fP\fImaxnode,\fP +\fB const unsigned long *\fP\fIold_nodes,\fP +\fB const unsigned long *\fP\fInew_nodes);\fP +.fi +.sp +\fI\-lnuma\fP とリンクする。 +.SH 説明 +\fBMIGRATE_PAGES\fP() は、メモリノード \fIold_nodes\fP にあるプロセス \fIpid\fP +の全ページを、メモリノード \fInew_nodes\fP に移動する。\fIold_nodes\fP で +指定されたメモリノードに置かれていないページは移動されない。 +カーネルは、 \fInew_nodes\fP への移動の際に、 \fIold_nodes\fP 内の相対的な +トポロジー関係を可能な限り維持しようとする。 + +引き数 \fIold_nodes\fP と \fInew_nodes\fP は、最大で \fImaxnode\fP ビットから +構成されるノード番号のビットマスクへのポインタである。 +各ビットマスクは符号なし \fIlong\fP 整数の配列として管理される +(\fImaxnode\fP で指定された長さを越えた部分のビットは無視される)。 +引き数 \fImaxnode\fP は最大ノード番号であり、ビットマスクの長さに 1 を +加えた値となる (これは \fBmbind\fP(2) と同じだが、 \fBselect\fP(2) とは違う)。 + +引き数 \fIpid\fP は、移動を行うページの所有者のプロセス ID である。 +別のプロセスのページを移動するには、呼び出したプロセスが特権 +(\fBCAP_SYS_NICE\fP) を持っているか、呼び出したプロセスの実ユーザ ID か +実効ユーザ ID がページ移動の対象プロセスの実ユーザ ID か saved\-set +ユーザ ID と一致していなければならない。\fIpid\fP が 0 の場合、 +\fBmigrate_pages\fP() は呼び出したプロセスのページを移動する。 + +別のプロセスと共有しているページは、呼び出したプロセスが +\fBCAP_SYS_NICE\fP 特権を持っている場合にのみ移動される。 +.SH 返り値 +\fBmigrate_pages\fP() は成功すると 0 を返す。 +エラーの場合、 \-1 を返し、 \fIerrno\fP にエラーを示す値を設定する。 +.SH エラー +.TP +\fBEPERM\fP +\fIpid\fP で指定されたプロセスのページを移動するのに必要な特権 +(\fBCAP_SYS_NICE\fP) がなかった。または、指定された対象ノードにアクセス +するのに必要な権限 (\fBCAP_SYS_NICE\fP) がなかった。 +.TP +\fBESRCH\fP +.\" FIXME There are other errors +プロセス ID が \fIpid\fP のプロセスが見つからなかった。 +.SH バージョン +\fBmigrate_pages\fP() システムコールは Linux 2.6.16 で初めて登場した。 +.SH 準拠 +このシステムコールは Linux 固有である。 +.SH 注意 +ライブラリによるサポートについては \fBnuma\fP(7) を参照。 + +呼び出し元プロセスの CPU 集合で許可されているノード集合を取得するには、 +\fBMPOL_F_MEMS_ALLOWED\fP フラグを付けて \fBget_mempolicy\fP(2) を使うこと。 +この情報は、手動/自動に限らず CPU 集合の再構成によりいつでも +変更されることがある点に注意してほしい。 + +\fBmigrate_pages\fP を使用すると、ページが置かれる場所 (ノード) が、指定 +されたアドレスに対して設定されたメモリポリシー (\fBmbind\fP(2) 参照) や +指定されたプロセスに対して設定されたメモリポリシー +(\fBset_mempolicy\fP(2) 参照) に違反する状況になる可能性がある。 +すなわち、メモリポリシーによる制約は \fBmigrate_pages\fP() による移動先 +ノードの選択には適用されないということである。 + +ヘッダファイル \fI\fP は glibc には含まれておらず、 \fIlibnuma\-devel\fP +か同様のパッケージをインストールする必要がある。 +.SH 関連項目 +\fBget_mempolicy\fP(2), \fBmbind\fP(2), \fBset_mempolicy\fP(2), \fBnuma\fP(3), +\fBnuma_maps\fP(5), \fBcpuset\fP(7), \fBnuma\fP(7), \fBmigratepages\fP(8), +\fBnuma_stat\fP(8); +.br +カーネルのソースファイル \fIDocumentation/vm/page_migration\fP。 +.SH この文書について +この man ページは Linux \fIman\-pages\fP プロジェクトのリリース 3.40 の一部 +である。プロジェクトの説明とバグ報告に関する情報は +http://www.kernel.org/doc/man\-pages/ に書かれている。 diff --git a/po4a/numa/po/ja.po b/po4a/numa/po/ja.po index 5651ca1f..5c8f8049 100644 --- a/po4a/numa/po/ja.po +++ b/po4a/numa/po/ja.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2012-05-01 04:21+0900\n" -"PO-Revision-Date: 2012-05-04 04:57+0900\n" +"PO-Revision-Date: 2012-05-10 00:38+0900\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "Language: \n" @@ -411,7 +411,7 @@ msgstr "2008-06-03" #: build/C/man2/getcpu.2:10 msgid "" "getcpu - determine CPU and NUMA node on which the calling thread is running" -msgstr "" +msgstr "getcpu - 呼び出し元スレッドが動作している CPU と NUMA ノードを判定する" #. type: Plain text #: build/C/man2/getcpu.2:13 @@ -435,11 +435,18 @@ msgid "" "identifier identifying a NUMA node. When either I or I is NULL " "nothing is written to the respective pointer." msgstr "" +"B() システムコールは、呼び出し元のスレッドやプロセスが\n" +"現在動作しているプロセッサやノードの情報を特定し、\n" +"それぞれ引き数 I と I が指す整数に書き込む。\n" +"プロセッサ情報は CPU を識別するための一意な小さな整数である。\n" +"ノード情報は NUMAノードを識別するための一意な小さな整数である。\n" +"I か I のいずれかが NULL であれば、\n" +"その引き数に対応する情報の書き込みは行われない。" #. type: Plain text #: build/C/man2/getcpu.2:36 msgid "The third argument to this system call is nowadays unused." -msgstr "" +msgstr "このシステムコールの 3 番目の引き数は現在は使われていない。" #. type: Plain text #: build/C/man2/getcpu.2:51 @@ -452,16 +459,23 @@ msgid "" "must be prepared to handle the situation when I and I are no " "longer the current CPU and node." msgstr "" +"I に格納された情報が最新だと保証できるのは、システムコールが呼ばれ\n" +"た時点だけである。B(2) を使って CPU affinity が固定\n" +"されていない限り、カーネルはいつでも CPU を変更してもよい (スケジューラ\n" +"はキャッシュが有効に働くように CPU の移動を最小限にしようとするので、\n" +"通常は CPU が変更されることはないが、起きる可能性はある)。\n" +"呼び出し元は、 I や I で得られた情報がすでに現在の CPU や\n" +"ノードの情報とは異なっている状況を扱えるようにしておかなければならない。" #. type: Plain text #: build/C/man2/getcpu.2:54 msgid "B() was added in kernel 2.6.19 for x86_64 and i386." -msgstr "" +msgstr "B() はカーネル 2.6.19 で x86_64 と i386 向けに追加された." #. type: Plain text #: build/C/man2/getcpu.2:57 msgid "B() is Linux specific." -msgstr "" +msgstr "B() は Linux 固有である。" #. type: Plain text #: build/C/man2/getcpu.2:63 @@ -470,6 +484,9 @@ msgid "" "of B() is to allow programs to make optimizations with per-CPU data " "or for NUMA optimization." msgstr "" +"Linux はこのシステムコールを可能な限り早く実行しようとする。\n" +"B() は、CPU 毎のデータに対する最適化や NUMA 環境での最適化を\n" +"プログラムが行えるようにすることを目的として実装されているからである。" #. type: Plain text #: build/C/man2/getcpu.2:69 @@ -477,6 +494,9 @@ msgid "" "Glibc does not provide a wrapper for this system call; call it using " "B(2); or use B(3) instead." msgstr "" +"glibc はこのシステムコールに対するラッパー関数を提供していない。\n" +"B(2) を使って呼び出すか、\n" +"代わりに B(3) を使用すること。" #. commit 4307d1e5ada595c87f9a4d16db16ba5edb70dcb1 #. Author: Ingo Molnar @@ -524,6 +544,14 @@ msgid "" "problems when migrating threads between CPUs, and so the argument is now " "ignored." msgstr "" +"I 引き数は Linux 2.6.24 以降では使用されない。以前のバージョン\n" +"のカーネルでは、この引き数が NULL 以外の場合、この引き数には、呼び出し\n" +"元が割り当てたスレッド専用の記憶領域 (thread-local storage) 内のバッファ\n" +"を指すポインタが指定され、このバッファは B() 用のキャッシュ機構\n" +"を提供するために利用されていた。非常に低い確率だが古い情報を返してしま\n" +"うデメリットはあるものの、このキャッシュを使うことで B() システ\n" +"ムコールを高速化できた。このキャッシュ機構はCPU 間でのスレッドの移動時\n" +"に問題になると考えられ、この引き数は今では無視されるようになっている。" #. type: Plain text #: build/C/man2/getcpu.2:126 @@ -1024,8 +1052,9 @@ msgid "" "B(2), B(2), B(2), B(2), B" "(2), B(2), B(3), B(7), B(7), B(8)" msgstr "" -"B(2), B(2), B(2), B(2), B" -"(2), B(2), B(3), B(7), B(7), B(8)" +"B(2), B(2), B(2), B(2),\n" +"B(2), B(2), B(3), B(7), B(7),\n" +"B(8)" #. type: TH #: build/C/man2/migrate_pages.2:17 @@ -1042,7 +1071,7 @@ msgstr "2010-11-01" #. type: Plain text #: build/C/man2/migrate_pages.2:20 msgid "migrate_pages - move all pages in a process to another set of nodes" -msgstr "" +msgstr "migrate_pages - プロセスの全ページを別のノード集合に移動する" #. type: Plain text #: build/C/man2/migrate_pages.2:27 @@ -1070,6 +1099,11 @@ msgid "" "kernel maintains the relative topology relationship inside I " "during the migration to I." msgstr "" +"B() は、メモリノード I にあるプロセス I\n" +"の全ページを、メモリノード I に移動する。I で\n" +"指定されたメモリノードに置かれていないページは移動されない。\n" +"カーネルは、 I への移動の際に、 I 内の相対的な\n" +"トポロジー関係を可能な限り維持しようとする。" #. type: Plain text #: build/C/man2/migrate_pages.2:68 @@ -1081,6 +1115,12 @@ msgid "" "I argument is the maximum node number in the bit mask plus one " "(this is the same as in B(2), but different from B(2) とは違う)。" #. type: Plain text #: build/C/man2/migrate_pages.2:82 @@ -1091,6 +1131,12 @@ msgid "" "must match the real or saved-set user ID of the target process. If I " "is 0, then B() moves pages of the calling process." msgstr "" +"引き数 I は、移動を行うページの所有者のプロセス ID である。\n" +"別のプロセスのページを移動するには、呼び出したプロセスが特権\n" +"(B) を持っているか、呼び出したプロセスの実ユーザ ID か\n" +"実効ユーザ ID がページ移動の対象プロセスの実ユーザ ID か saved-set \n" +"ユーザ ID と一致していなければならない。I が 0 の場合、\n" +"B() は呼び出したプロセスのページを移動する。" #. type: Plain text #: build/C/man2/migrate_pages.2:87 @@ -1098,6 +1144,8 @@ msgid "" "Pages shared with another process will only be moved if the initiating " "process has the B privilege." msgstr "" +"別のプロセスと共有しているページは、呼び出したプロセスが\n" +"B 特権を持っている場合にのみ移動される。" #. type: Plain text #: build/C/man2/migrate_pages.2:94 @@ -1105,6 +1153,8 @@ msgid "" "On success B() returns zero. On error, it returns -1, and " "sets I to indicate the error." msgstr "" +"B() は成功すると 0 を返す。\n" +"エラーの場合、 -1 を返し、 I にエラーを示す値を設定する。" #. type: Plain text #: build/C/man2/migrate_pages.2:104 @@ -1113,6 +1163,9 @@ msgid "" "specified by I, or insufficient privilege (B) to access " "the specified target nodes." msgstr "" +"I で指定されたプロセスのページを移動するのに必要な特権\n" +"(B) がなかった。または、指定された対象ノードにアクセス\n" +"するのに必要な権限 (B) がなかった。" #. type: TP #: build/C/man2/migrate_pages.2:104 build/C/man2/move_pages.2:187 @@ -1124,14 +1177,14 @@ msgstr "B" #. type: Plain text #: build/C/man2/migrate_pages.2:110 msgid "No process matching I could be found." -msgstr "" +msgstr "プロセス ID が I のプロセスが見つからなかった。" #. type: Plain text #: build/C/man2/migrate_pages.2:114 msgid "" "The B() system call first appeared on Linux in version " "2.6.16." -msgstr "" +msgstr "B() システムコールは Linux 2.6.16 で初めて登場した。" #. type: Plain text #: build/C/man2/migrate_pages.2:128 @@ -1141,6 +1194,10 @@ msgid "" "this information is subject to change at any time by manual or automatic " "reconfiguration of the cpuset." msgstr "" +"呼び出し元プロセスの CPU 集合で許可されているノード集合を取得するには、\n" +"B フラグを付けて B(2) を使うこと。\n" +"この情報は、手動/自動に限らず CPU 集合の再構成によりいつでも\n" +"変更されることがある点に注意してほしい。" #. type: Plain text #: build/C/man2/migrate_pages.2:140 @@ -1151,6 +1208,12 @@ msgid "" "is, memory policy does not constrain the destination nodes used by " "B()." msgstr "" +"B を使用すると、ページが置かれる場所 (ノード) が、指定\n" +"されたアドレスに対して設定されたメモリポリシー (B(2) 参照) や\n" +"指定されたプロセスに対して設定されたメモリポリシー\n" +"(B(2) 参照) に違反する状況になる可能性がある。\n" +"すなわち、メモリポリシーによる制約は B() による移動先\n" +"ノードの選択には適用されないということである。" #. type: Plain text #: build/C/man2/migrate_pages.2:146 build/C/man2/move_pages.2:225 @@ -1175,7 +1238,7 @@ msgstr "" #. type: Plain text #: build/C/man2/migrate_pages.2:159 msgid "the kernel source file I." -msgstr "" +msgstr "カーネルのソースファイル I。" #. type: TH #: build/C/man2/move_pages.2:18 @@ -1562,7 +1625,7 @@ msgstr "NUMA" #. type: Plain text #: build/C/man7/numa.7:30 msgid "numa - overview of Non-Uniform Memory Architecture" -msgstr "" +msgstr "numa - 非対称型メモリアーキテクチャの概要" #. type: Plain text #: build/C/man7/numa.7:41 @@ -1576,12 +1639,21 @@ msgid "" "faster than the memory in the node local to another CPU or the memory on a " "bus shared by all CPUs." msgstr "" +"非対称型メモリアクセス (Non-Uniform Memory Access; NUMA) は、\n" +"メモリが複数のメモリノードに分割されているマルチプロセッサシステム\n" +"のことである。メモリノードへのアクセス時間は、アクセス元の CPU と\n" +"アクセス先のノードの相対的な位置関係に依存する\n" +"(これに対し、対称型マルチプロセッサシステムでは、どの CPU から\n" +"どのメモリへのアクセス時間も同じである)。\n" +"通常は、 NUMA システムの各 CPU にはローカルのメモリノードがあり、\n" +"そのメモリノードには、他の CPU のローカルノードや全ての CPU で\n" +"共有されるバス上のメモリよりも早くアクセスすることができる。" #. type: SS #: build/C/man7/numa.7:41 #, no-wrap msgid "NUMA system calls" -msgstr "" +msgstr "NUMA システムコール" #. type: Plain text #: build/C/man7/numa.7:52 @@ -1591,12 +1663,17 @@ msgid "" "B(2). However, applications should normally use the " "interface provided by I; see \"Library Support\" below." msgstr "" +"Linux カーネルには、次に示す NUMA 関連のシステムコールが実装されている:\n" +"B(2), B(2), B(2),\n" +"B(2), B(2).\n" +"ただし、アプリケーションは通常は I が提供するインターフェース\n" +"を使用すべきである。下記の「ライブラリによるサポート」を参照。" #. type: SS #: build/C/man7/numa.7:52 #, no-wrap msgid "/proc/[number]/numa_maps (since Linux 2.6.14)" -msgstr "" +msgstr "/proc/[number]/numa_maps (Linux 2.6.14 以降)" #. See also Changelog-2.6.14 #. type: Plain text @@ -1605,6 +1682,8 @@ msgid "" "This file displays information about a process's NUMA memory policy and " "allocation." msgstr "" +"このファイルは、プロセスの NUMA メモリポリシーと割り当てに関する\n" +"情報を表示する。" #. type: Plain text #: build/C/man7/numa.7:60 @@ -1691,7 +1770,7 @@ msgstr "I" #. type: Plain text #: build/C/man7/numa.7:108 msgid "Memory range is used for the heap." -msgstr "" +msgstr "ヒープに使用されているメモリ範囲。" #. type: TP #: build/C/man7/numa.7:108 @@ -1702,7 +1781,7 @@ msgstr "I" #. type: Plain text #: build/C/man7/numa.7:111 msgid "Memory range is used for the stack." -msgstr "" +msgstr "スタックに使用されているメモリ範囲。" #. type: TP #: build/C/man7/numa.7:111 @@ -1716,6 +1795,8 @@ msgid "" "Huge memory range. The page counts shown are huge pages and not regular " "sized pages." msgstr "" +"ヒュージメモリの範囲。表示されるページ数は、\n" +"通常の大きさのページではなく、ヒュージページの数である。" #. type: TP #: build/C/man7/numa.7:115 @@ -1726,7 +1807,7 @@ msgstr "IpagesE>" #. type: Plain text #: build/C/man7/numa.7:118 msgid "The number of anonymous page in the range." -msgstr "" +msgstr "メモリ範囲内の無名ページ (anonymous page) の数。" #. type: TP #: build/C/man7/numa.7:118 @@ -1737,7 +1818,7 @@ msgstr "IpagesE>" #. type: Plain text #: build/C/man7/numa.7:121 msgid "Number of dirty pages." -msgstr "" +msgstr "dirty (変更された) ページの数。" #. type: TP #: build/C/man7/numa.7:121 @@ -1808,12 +1889,15 @@ msgid "" "The Linux NUMA system calls and I interface are only available if the " "kernel was configured and built with the B option." msgstr "" +"Linux の NUMA システムコールと I インターフェースは、カーネルが\n" +"設定オプション B を有効にして作成されている場合のみ、利用\n" +"可能である。" #. type: SS #: build/C/man7/numa.7:153 #, no-wrap msgid "Library Support" -msgstr "" +msgstr "ライブラリによるサポート" #. type: Plain text #: build/C/man7/numa.7:162 @@ -1822,6 +1906,9 @@ msgid "" "required Inumaif.hE> header are available in the I " "package." msgstr "" +"システムコールの定義を得るには I<-lnuma> でリンクすること。\n" +"I と必要なヘッダファイル Inumaif.hE> は\n" +"I パッケージで提供されている。" #. type: Plain text #: build/C/man7/numa.7:178 @@ -1833,11 +1920,18 @@ msgid "" "included in some Linux distributions. Some distributions include the " "development library and header in the separate I package." msgstr "" +"ただし、アプリケーションはこれらのシステムコールを直接利用すべきでない。\n" +"推奨される方法は、I パッケージの B(3) の関数群が提供する\n" +"高レベルインターフェースの利用である。 I パッケージは\n" +"I で入手できる。\n" +"このパッケージが収録されている Linux ディストリビューションもある。\n" +"ディストリビューションによっては、開発用のライブラリとヘッダファイルは\n" +"別パッケージ I で提供されている。" #. type: Plain text #: build/C/man7/numa.7:180 msgid "No standards govern NUMA interfaces." -msgstr "" +msgstr "NUMA インターフェースについて規定している標準はない。" #. type: Plain text #: build/C/man7/numa.7:188 -- 2.11.0