OSDN Git Service

Update README
[linuxjm/LDP_man-pages.git] / release / man2 / _syscall.2
1 .\" Copyright (c) 1993 Michael Haardt (michael@moria.de),
2 .\"   Fri Apr  2 11:32:09 MET DST 1993
3 .\"
4 .\" %%%LICENSE_START(GPLv2+_DOC_FULL)
5 .\" This is free documentation; you can redistribute it and/or
6 .\" modify it under the terms of the GNU General Public License as
7 .\" published by the Free Software Foundation; either version 2 of
8 .\" the License, or (at your option) any later version.
9 .\"
10 .\" The GNU General Public License's references to "object code"
11 .\" and "executables" are to be interpreted as the output of any
12 .\" document formatting or typesetting system, including
13 .\" intermediate and printed output.
14 .\"
15 .\" This manual is distributed in the hope that it will be useful,
16 .\" but WITHOUT ANY WARRANTY; without even the implied warranty of
17 .\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 .\" GNU General Public License for more details.
19 .\"
20 .\" You should have received a copy of the GNU General Public
21 .\" License along with this manual; if not, see
22 .\" <http://www.gnu.org/licenses/>.
23 .\" %%%LICENSE_END
24 .\"
25 .\" Tue Jul  6 12:42:46 MDT 1993 <dminer@nyx.cs.du.edu>
26 .\" Added "Calling Directly" and supporting paragraphs
27 .\"
28 .\" Modified Sat Jul 24 15:19:12 1993 by Rik Faith <faith@cs.unc.edu>
29 .\"
30 .\" Modified 21 Aug 1994 by Michael Chastain <mec@shell.portal.com>:
31 .\"   Added explanation of arg stacking when 6 or more args.
32 .\"
33 .\" Modified 10 June 1995 by Andries Brouwer <aeb@cwi.nl>
34 .\"
35 .\" 2007-10-23 mtk: created as a new page, by taking the content
36 .\" specific to the _syscall() macros from intro(2).
37 .\"
38 .\"*******************************************************************
39 .\"
40 .\" This file was generated with po4a. Translate the source file.
41 .\"
42 .\"*******************************************************************
43 .\"
44 .\" Japanese Version Copyright (c) 2008  Akihiro MOTOKI
45 .\"         all rights reserved.
46 .\" Translated 2008-02-11, Akihiro MOTOKI <amotoki@dd.iij4u.or.jp>
47 .\"
48 .TH _SYSCALL 2 2007\-12\-19 Linux "Linux Programmer's Manual"
49 .SH 名前
50 _syscall \- ライブラリのサポートなしでシステムコールを起動する (昔の方法)
51 .SH 書式
52 \fB#include <linux/unistd.h>\fP
53
54 A _syscall macro
55
56 desired system call
57 .SH 説明
58 システムコールに関してそのプロトタイプを知ることが重要である。 引き数の個数、それらの型、返り値の型を知る必要がある。
59 実際の使用にあたっては、システムコールをシステムに呼び出しやすくするために、 7 個のマクロが用意されている。これらのマクロは以下の形である。
60 .sp
61 .RS
62 _syscall\fIX\fP(\fItype\fP,\fIname\fP,\fItype1\fP,\fIarg1\fP,\fItype2\fP,\fIarg2\fP,...)
63 .RE
64 .PP
65 ここで
66 .IP
67 \fIX\fP は 0〜6 で、システムコールが取る引き数の個数である。
68 .IP
69 \fItype\fP はシステムコールの返り値の型である。
70 .IP
71 \fIname\fP はシステムコールの名前である。
72 .IP
73 \fItypeN\fP は N 番目の引き数の型である。
74 .IP
75 \fIargN\fP は N 番目の引き数の名前である。
76 .PP
77 これらのマクロは、指定した引き数を持つ \fIname\fP という名前の関数を生成する。 一度ソースファイルの中で _syscall()
78 をインクルードしておくと、 そのシステムコールを \fIname\fP という名前で呼ぶことができる。
79 .SH ファイル
80 \fI/usr/include/linux/unistd.h\fP
81 .SH 準拠
82 これらのマクロは Linux 固有であり、その使用は非推奨である。
83 .SH 注意
84 カーネル 2.6.18 あたりから、_syscall マクロ群はユーザー空間に対して提供される ヘッダーファイルから削除された。代わりに
85 \fBsyscall\fP(2)  を使用すること。 (いくつかのアーキテクチャー、特に ia64、では、これまで _syscall マクロが
86 提供されたことはない。このようなアーキテクチャーでは、常に \fBsyscall\fP(2)  が必要であった。)
87
88 _syscall() マクロはプロトタイプを「生成しない」。 ユーザーはプロトタイプを自分で書かなければならないかもしれない。 とりわけ C++
89 ユーザーの場合はそうであろう。
90
91 システムコールは、正のエラーコードのみ、または負のエラーコードのみを返すように
92 定められている訳ではない。そのシステムコールがどのようなエラーコードを返すかを
93 確認するには、そのソースコードを読む必要がある。たいていの場合は、標準のエラー コードを負にしたものである (例えば \-\fIEPERM\fP)。
94 _syscall() マクロは、そのシステムコールの返り値 \fIr\fP が負でない場合、その値 をそのまま返す。一方、\fIr\fP が負の場合には、変数
95 \fIerrno\fP に \-\fIr\fP を設定し、\-1 を返す。 エラーコードについては \fBerrno\fP(3)  を参照。
96
97 .\" The preferred way to invoke system calls that glibc does not know
98 .\" about yet is via
99 .\" .BR syscall (2).
100 .\" However, this mechanism can be used only if using a libc
101 .\" (such as glibc) that supports
102 .\" .BR syscall (2),
103 .\" and if the
104 .\" .I <sys/syscall.h>
105 .\" header file contains the required SYS_foo definition.
106 .\" Otherwise, the use of a _syscall macro is required.
107 .\"
108 システムコールを定義する際、引き数の型は値渡し (by\-value) か、 (構造体のように集合的なデータの場合は) ポインター渡し
109 (by\-pointer)  でなければならない。
110 .SH 例
111 .nf
112 #include <stdio.h>
113 #include <stdlib.h>
114 #include <errno.h>
115 #include <linux/unistd.h>       /* for _syscallX macros/related stuff */
116 #include <linux/kernel.h>       /* for struct sysinfo */
117
118 _syscall1(int, sysinfo, struct sysinfo *, info);
119
120 /* Note: nroff のソースファイルから直接コピーする際には、
121 printf 文内の余分なバックスラッシュを忘れずに削除するように。 */
122
123 int
124 main(void)
125 {
126     struct sysinfo s_info;
127     int error;
128
129     error = sysinfo(&s_info);
130     printf("code error = %d\en", error);
131     printf("Uptime = %lds\enLoad: 1 min %lu / 5 min %lu / 15 min %lu\en"
132            "RAM: total %lu / free %lu / shared %lu\en"
133            "Memory in buffers = %lu\enSwap: total %lu / free %lu\en"
134            "Number of processes = %d\en",
135            s_info.uptime, s_info.loads[0],
136            s_info.loads[1], s_info.loads[2],
137            s_info.totalram, s_info.freeram,
138            s_info.sharedram, s_info.bufferram,
139            s_info.totalswap, s_info.freeswap,
140            s_info.procs);
141     exit(EXIT_SUCCESS);
142 }
143 .fi
144 .SS 出力例
145 .nf
146 code error = 0
147 uptime = 502034s
148 Load: 1 min 13376 / 5 min 5504 / 15 min 1152
149 RAM: total 15343616 / free 827392 / shared 8237056
150 Memory in buffers = 5066752
151 Swap: total 27881472 / free 24698880
152 Number of processes = 40
153 .fi
154 .SH 関連項目
155 \fBintro\fP(2), \fBsyscall\fP(2), \fBerrno\fP(3)
156 .SH この文書について
157 この man ページは Linux \fIman\-pages\fP プロジェクトのリリース 3.79 の一部
158 である。プロジェクトの説明とバグ報告に関する情報は
159 http://www.kernel.org/doc/man\-pages/ に書かれている。