OSDN Git Service

b2a55afd83d531d70e32e953d89438ddd95b8d91
[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 .TH _SYSCALL 2 2007\-12\-19 Linux "Linux Programmer's Manual"
44 .SH 名前
45 _syscall \- ライブラリのサポートなしでシステムコールを起動する (昔の方法)
46 .SH 書式
47 \fB#include <linux/unistd.h>\fP
48
49 A _syscall macro
50
51 desired system call
52 .SH 説明
53 システムコールに関してそのプロトタイプを知ることが重要である。 引き数の個数、それらの型、返り値の型を知る必要がある。
54 実際の使用にあたっては、システムコールをシステムに呼び出しやすくするために、 7 個のマクロが用意されている。これらのマクロは以下の形である。
55 .sp
56 .RS
57 _syscall\fIX\fP(\fItype\fP,\fIname\fP,\fItype1\fP,\fIarg1\fP,\fItype2\fP,\fIarg2\fP,...)
58 .RE
59 .PP
60 ここで
61 .IP
62 \fIX\fP は 0〜6 で、システムコールが取る引き数の個数である。
63 .IP
64 \fItype\fP はシステムコールの返り値の型である。
65 .IP
66 \fIname\fP はシステムコールの名前である。
67 .IP
68 \fItypeN\fP は N 番目の引き数の型である。
69 .IP
70 \fIargN\fP は N 番目の引き数の名前である。
71 .PP
72 これらのマクロは、指定した引き数を持つ \fIname\fP という名前の関数を生成する。 一度ソースファイルの中で _syscall()
73 をインクルードしておくと、 そのシステムコールを \fIname\fP という名前で呼ぶことができる。
74 .SH ファイル
75 \fI/usr/include/linux/unistd.h\fP
76 .SH 準拠
77 これらのマクロは Linux 固有であり、その使用は非推奨である。
78 .SH 注意
79 カーネル 2.6.18 あたりから、_syscall マクロ群はユーザ空間に対して提供される ヘッダファイルから削除された。代わりに
80 \fBsyscall\fP(2)  を使用すること。 (いくつかのアーキテクチャ、特に ia64、では、これまで _syscall マクロが
81 提供されたことはない。このようなアーキテクチャでは、常に \fBsyscall\fP(2)  が必要であった。)
82
83 _syscall() マクロはプロトタイプを「生成しない」。 ユーザはプロトタイプを自分で書かなければならないかもしれない。 とりわけ C++
84 ユーザの場合はそうであろう。
85
86 システムコールは、正のエラーコードのみ、または負のエラーコードのみを返すように
87 定められている訳ではない。そのシステムコールがどのようなエラーコードを返すかを
88 確認するには、そのソースコードを読む必要がある。たいていの場合は、標準のエラー コードを負にしたものである (例えば \-\fBEPERM\fP)。
89 _syscall() マクロは、そのシステムコールの返り値 \fIr\fP が負でない場合、その値 をそのまま返す。一方、\fIr\fP が負の場合には、変数
90 \fIerrno\fP に \-\fIr\fP を設定し、\-1 を返す。 エラーコードについては \fBerrno\fP(3)  を参照。
91
92 .\" The preferred way to invoke system calls that glibc does not know
93 .\" about yet is via
94 .\" .BR syscall (2).
95 .\" However, this mechanism can be used only if using a libc
96 .\" (such as glibc) that supports
97 .\" .BR syscall (2),
98 .\" and if the
99 .\" .I <sys/syscall.h>
100 .\" header file contains the required SYS_foo definition.
101 .\" Otherwise, the use of a _syscall macro is required.
102 .\"
103 システムコールを定義する際、引き数の型は値渡し (by\-value) か、 (構造体のように集合的なデータの場合は) ポインタ渡し
104 (by\-pointer)  でなければならない。
105 .SH 例
106 .nf
107 #include <stdio.h>
108 #include <stdlib.h>
109 #include <errno.h>
110 #include <linux/unistd.h>       /* for _syscallX macros/related stuff */
111 #include <linux/kernel.h>       /* for struct sysinfo */
112
113 _syscall1(int, sysinfo, struct sysinfo *, info);
114
115 /* Note: nroff のソースファイルから直接コピーする際には、
116 printf 文内の余分なバックスラッシュを忘れずに削除するように。 */
117
118 int
119 main(void)
120 {
121     struct sysinfo s_info;
122     int error;
123
124     error = sysinfo(&s_info);
125     printf("code error = %d\en", error);
126     printf("Uptime = %lds\enLoad: 1 min %lu / 5 min %lu / 15 min %lu\en"
127            "RAM: total %lu / free %lu / shared %lu\en"
128            "Memory in buffers = %lu\enSwap: total %lu / free %lu\en"
129            "Number of processes = %d\en",
130            s_info.uptime, s_info.loads[0],
131            s_info.loads[1], s_info.loads[2],
132            s_info.totalram, s_info.freeram,
133            s_info.sharedram, s_info.bufferram,
134            s_info.totalswap, s_info.freeswap,
135            s_info.procs);
136     exit(EXIT_SUCCESS);
137 }
138 .fi
139 .SS 出力例
140 .nf
141 code error = 0
142 uptime = 502034s
143 Load: 1 min 13376 / 5 min 5504 / 15 min 1152
144 RAM: total 15343616 / free 827392 / shared 8237056
145 Memory in buffers = 5066752
146 Swap: total 27881472 / free 24698880
147 Number of processes = 40
148 .fi
149 .SH 関連項目
150 \fBintro\fP(2), \fBsyscall\fP(2), \fBerrno\fP(3)
151 .SH この文書について
152 この man ページは Linux \fIman\-pages\fP プロジェクトのリリース 3.52 の一部
153 である。プロジェクトの説明とバグ報告に関する情報は
154 http://www.kernel.org/doc/man\-pages/ に書かれている。