OSDN Git Service

6a48e44fd9364b45a8b3b440a914e8cf44a931fe
[linuxjm/LDP_man-pages.git] / draft / man2 / removexattr.2
1 .\"
2 .\" Extended attributes system calls manual pages
3 .\"
4 .\" Copyright (C) Andreas Gruenbacher, February 2001
5 .\" Copyright (C) Silicon Graphics Inc, September 2001
6 .\"
7 .\" This is free documentation; you can redistribute it and/or
8 .\" modify it under the terms of the GNU General Public License as
9 .\" published by the Free Software Foundation; either version 2 of
10 .\" the License, or (at your option) any later version.
11 .\"
12 .\" The GNU General Public License's references to "object code"
13 .\" and "executables" are to be interpreted as the output of any
14 .\" document formatting or typesetting system, including
15 .\" intermediate and printed output.
16 .\"
17 .\" This manual is distributed in the hope that it will be useful,
18 .\" but WITHOUT ANY WARRANTY; without even the implied warranty of
19 .\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20 .\" GNU General Public License for more details.
21 .\"
22 .\" You should have received a copy of the GNU General Public
23 .\" License along with this manual; if not, write to the Free
24 .\" Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111,
25 .\" USA.
26 .\"
27 .\" Japanese Version Copyright (c) 2003  Akihiro MOTOKI
28 .\"         all rights reserved.
29 .\" Translated Tue Jul  8 04:43:40 JST 2003
30 .\"         by Akihiro MOTOKI <amotoki@dd.iij4u.or.jp>
31 .\"
32 .\"WORD:        extended attributes     拡張属性
33 .\"WORD:        namespace               名前空間
34 .\"
35 .TH REMOVEXATTR 2 2001-12-01 "Linux" "Linux Programmer's Manual"
36 .\"O .SH NAME
37 .\"O removexattr, lremovexattr, fremovexattr \- remove an extended attribute
38 .SH 名前
39 removexattr, lremovexattr, fremovexattr \- 拡張属性を削除する
40 .\"O .SH SYNOPSIS
41 .SH 書式
42 .fam C
43 .nf
44 .B #include <sys/types.h>
45 .B #include <attr/xattr.h>
46 .sp
47 .BI "int removexattr(const char\ *" path ", const char\ *" name );
48 .BI "int lremovexattr(const char\ *" path ", const char\ *" name );
49 .BI "int fremovexattr(int " fd ", const char\ *" name );
50 .fi
51 .fam T
52 .\"O .SH DESCRIPTION
53 .SH 説明
54 .\"O Extended attributes are
55 .\"O .IR name :\c
56 .\"O value pairs associated with inodes (files, directories, symbolic links, etc.).
57 .\"O They are extensions to the normal attributes which are associated
58 .\"O with all inodes in the system (i.e., the
59 .\"O .BR stat (2)
60 .\"O data).
61 .\"O A complete overview of extended attributes concepts can be found in
62 .\"O .BR attr (5).
63 拡張属性は、inode (ファイル、ディレクトリ、シンボリックリンク等) に
64 関連付けられた
65 .IR name :\c
66 .I value
67 の対である。
68 これらは、システム上のすべての inode に関連付けられた通常の属性
69 .RB ( stat (2)
70 が返すデータ) を拡張するものである。
71 拡張属性のコンセプトは
72 .BR attr (5)
73 に書かれている。
74 .PP
75 .\"O .BR removexattr ()
76 .\"O removes the extended attribute identified by
77 .\"O .I name
78 .\"O and associated with the given
79 .\"O .I path
80 .\"O in the file system.
81 .BR removexattr ()
82 は、ファイルシステム内の指定された
83 .I path
84 に対応する、名前
85 .I name
86 の拡張属性を削除する。
87 .PP
88 .\"O .BR lremovexattr ()
89 .\"O is identical to
90 .\"O .BR removexattr (),
91 .\"O except in the case of a symbolic link, where the extended attribute is
92 .\"O removed from the link itself, not the file that it refers to.
93 .BR lremovexattr ()
94
95 .BR removexattr ()
96 と同じだが、シンボリックリンクの場合に、リンクが参照しているファイル
97 ではなく、リンクそのものの情報を削除する点だけが異なる。
98 .PP
99 .\"O .BR fremovexattr ()
100 .\"O is identical to
101 .\"O .BR removexattr (),
102 .\"O only the extended attribute is removed from the open file referred to by
103 .\"O .I fd
104 .\"O (as returned by
105 .\"O .BR open (2))
106 .\"O in place of
107 .\"O .IR path .
108 .BR fremovexattr ()
109
110 .BR removexattr ()
111 と同じだが、
112 .I path
113 の代わりに
114 .I fd
115 で参照されたオープン済みファイルから拡張属性を削除するだけである点が異なる
116 .RI ( fd
117
118 .BR open (2)
119 によって返される)。
120 .PP
121 .\"O An extended attribute name is a simple null-terminated string.
122 .\"O The
123 .\"O .I name
124 .\"O includes a namespace prefix; there may be several, disjoint
125 .\"O namespaces associated with an individual inode.
126 拡張属性の名前は、普通の NULL 終端された文字列である。
127 .I name
128 には、名前空間を表す接頭辞 (prefix) が含まれる。
129 個々の inode に対し、互いに独立な名前空間が複数あってもよい。
130 .\"O .SH RETURN VALUE
131 .SH 返り値
132 .\"O On success, zero is returned.
133 .\"O On failure, \-1 is returned and
134 .\"O .I errno
135 .\"O is set appropriately.
136 成功した場合、0 が返される。
137 失敗した場合、 \-1 が返され、
138 .I errno
139 に適切な値がセットされる。
140 .PP
141 .\"O If the named attribute does not exist,
142 .\"O .I errno
143 .\"O is set to
144 .\"O .BR ENOATTR .
145 指定された名前の属性が存在しない場合、
146 .I errno
147
148 .B ENOATTR
149 がセットされる。
150 .PP
151 .\"O If extended attributes are not supported by the file system, or are disabled,
152 .\"O .I errno
153 .\"O is set to
154 .\"O .BR ENOTSUP .
155 拡張属性がそのファイルシステムでサポートされていない場合、
156 もしくは無効になっている場合、
157 .I errno
158
159 .B ENOTSUP
160 がセットされる。
161 .PP
162 .\"O The errors documented for the
163 .\"O .BR stat (2)
164 .\"O system call are also applicable here.
165 .BR stat (2)
166 システムコールの説明に書かれているエラーは
167 これらのシステムコールにも適用される。
168 .\"O .SH VERSIONS
169 .SH バージョン
170 .\"O These system calls have been available on Linux since kernel 2.4;
171 .\"O glibc support is provided since version 2.3.
172 これらのシステムコールはカーネル 2.4 以降の Linux で利用できる。
173 glibc でのサポートはバージョン 2.3 以降で行われている。
174 .\"O .SH "CONFORMING TO"
175 .SH 準拠
176 .\"O These system calls are Linux-specific.
177 これらのシステムコールは Linux 独自である。
178 .\"O .\" .SH AUTHORS
179 .\" .SH 著者
180 .\"O .\" Andreas Gruenbacher,
181 .\"O .\" .RI < a.gruenbacher@computer.org >
182 .\"O .\" and the SGI XFS development team,
183 .\"O .\" .RI < linux-xfs@oss.sgi.com >.
184 .\"O .\" Please send any bug reports or comments to these addresses.
185 .\" Andreas Gruenbacher,
186 .\" .RI < a.gruenbacher@computer.org >
187 .\" と SGI XFS 開発チーム,
188 .\" .RI < linux-xfs@oss.sgi.com >。
189 .\" バグレポートやコメントは上記のアドレスまで送って下さい。
190 .\"O .SH SEE ALSO
191 .SH 関連項目
192 .BR getfattr (1),
193 .BR setfattr (1),
194 .BR getxattr (2),
195 .BR listxattr (2),
196 .BR open (2),
197 .BR setxattr (2),
198 .BR stat (2),
199 .BR attr (5),
200 .BR symlink (7)