manページ検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 179 for fcntl (0.027 sec.)
Man page of FLOCK 11733
FLOCK Section: Linux Programmer's Manual (2) Updated: 2017-09-15 Index JM Home Page 名前 flock - ... BSD ( flock () コールは 4.2BSD で最初に登場した)。 fcntl (2) で実装されているものなどを含めると、 flock () ... l 2.0 以降では、 flock () は、GNU C ライブラリでの fcntl (2) を呼び出してのエミュレーションではなく、 それ自 ... ルとして実装されている。 この実装では、 flock () と fcntl (2) で適用されるロックの種別には相互作用がなくなり ... 最近の BSD などいくつかのシステムでは、 flock () と fcntl (2) ロックが互いに影響することが「ある」という点に ...
https://man.plustar.jp/manpage/man2/flock.2.html - [similar]
Man page of FCNTL 11377
FCNTL Section: Linux Programmer's Manual (2) Updated: 2020-12-21 Index JM Home Page 名前 fcntl - ... ーの操作を行う 書式 #include < unistd.h > #include < fcntl.h > int fcntl(int fd , int cmd , ... /* arg */ ); ... 説明 fcntl () は、オープンされたファイルディスクリプター fd に ... 関して下記の操作を行う。操作は cmd によって決まる: fcntl () はオプションとして第三引数をとることができる。 ... 定の操作をサポートしているかを確認する推奨の方法は、 fcntl () を所望の cmd 値で呼び出し、 EINVAL で失敗するか ...
https://man.plustar.jp/manpage/man2/fcntl.2.html - [similar]
Man page of FCNTL 11377
FCNTL Section: Linux Programmer's Manual (2) Updated: 2020-12-21 Index JM Home Page 名前 fcntl - ... ーの操作を行う 書式 #include < unistd.h > #include < fcntl.h > int fcntl(int fd , int cmd , ... /* arg */ ); ... 説明 fcntl () は、オープンされたファイルディスクリプター fd に ... 関して下記の操作を行う。操作は cmd によって決まる: fcntl () はオプションとして第三引数をとることができる。 ... 定の操作をサポートしているかを確認する推奨の方法は、 fcntl () を所望の cmd 値で呼び出し、 EINVAL で失敗するか ...
https://man.plustar.jp/manpage/man2/fcntl64.2.html - [similar]
Man page of OPEN 9244
OPEN Section: Linux Programmer's Manual (2) Updated: 2020-11-01 Index JM Home Page 名前 open, op ... < sys/types.h > #include < sys/stat.h > #include < fcntl.h > int open(const char * pathname , int flags ); ... ent system calls ( read (2), write (2), lseek (2), fcntl (2), etc.) to refer to the open file. The file des ... を実行した後も オープンされたままとなる (つまり、 fcntl (2) に説明がある FD_CLOEXEC ファイルディスクリプタ ... can be retrieved and (in some cases) modified; see fcntl (2) for details. すべてのファイル作成フラグとファイ ...
https://man.plustar.jp/manpage/man2/creat.2.html - [similar]
Man page of OPEN 9244
OPEN Section: Linux Programmer's Manual (2) Updated: 2020-11-01 Index JM Home Page 名前 open, op ... < sys/types.h > #include < sys/stat.h > #include < fcntl.h > int open(const char * pathname , int flags ); ... ent system calls ( read (2), write (2), lseek (2), fcntl (2), etc.) to refer to the open file. The file des ... を実行した後も オープンされたままとなる (つまり、 fcntl (2) に説明がある FD_CLOEXEC ファイルディスクリプタ ... can be retrieved and (in some cases) modified; see fcntl (2) for details. すべてのファイル作成フラグとファイ ...
https://man.plustar.jp/manpage/man2/open.2.html - [similar]
Man page of OPEN 9244
OPEN Section: Linux Programmer's Manual (2) Updated: 2020-11-01 Index JM Home Page 名前 open, op ... < sys/types.h > #include < sys/stat.h > #include < fcntl.h > int open(const char * pathname , int flags ); ... ent system calls ( read (2), write (2), lseek (2), fcntl (2), etc.) to refer to the open file. The file des ... を実行した後も オープンされたままとなる (つまり、 fcntl (2) に説明がある FD_CLOEXEC ファイルディスクリプタ ... can be retrieved and (in some cases) modified; see fcntl (2) for details. すべてのファイル作成フラグとファイ ...
https://man.plustar.jp/manpage/man2/openat.2.html - [similar]
Man page of MEMFD_CREATE 9122
MEMFD_CREATE Section: Linux Programmer's Manual (2) Updated: 2020-11-01 Index JM Home Page 名前 ... LING このファイルに対して sealing 操作を許可する。 fcntl (2) の F_ADD_SEALS と F_GET_SEALS 操作の議論を参照 ... 手段を提供している。 memfd_create () の主な目的は、 fcntl (2) が提供する file-sealing API で使用できる、 ファ ... 望のデータを配置する。 3. The first process uses the fcntl (2) F_ADD_SEALS operation to place one or more sea ... (2) を使ってマッピングする。 5. 二つ目のプロセスは fcntl (2) の F_GET_SEALS 操作を使って、 そのファイルに適 ...
https://man.plustar.jp/manpage/man2/memfd_create.2.html - [similar]
Man page of DUP 7577
DUP Section: Linux Programmer's Manual (2) Updated: 2020-11-01 Index JM Home Page 名前 dup, dup2 ... URCE /* feature_test_macros (7) 参照 */ #include < fcntl.h > /* 定数 O_* の定義の取得 */ #include < unistd. ... 。複製されたディスクリプターの close-on-exec flag ( fcntl (2) 参照) は off となる。 dup2() dup2 () システムコ ... fd が範囲を超えた時に返されるエラーは、 dup2 () と fcntl( ..., F_DUPFD , ... ) では異っている。 dup2 () が ... からのエラーを処理する */ } } 関連項目 close (2), fcntl (2), open (2), pidfd_getfd (2) この文書について こ ...
https://man.plustar.jp/manpage/man2/dup.2.html - [similar]
Man page of DUP 7577
DUP Section: Linux Programmer's Manual (2) Updated: 2020-11-01 Index JM Home Page 名前 dup, dup2 ... URCE /* feature_test_macros (7) 参照 */ #include < fcntl.h > /* 定数 O_* の定義の取得 */ #include < unistd. ... 。複製されたディスクリプターの close-on-exec flag ( fcntl (2) 参照) は off となる。 dup2() dup2 () システムコ ... fd が範囲を超えた時に返されるエラーは、 dup2 () と fcntl( ..., F_DUPFD , ... ) では異っている。 dup2 () が ... からのエラーを処理する */ } } 関連項目 close (2), fcntl (2), open (2), pidfd_getfd (2) この文書について こ ...
https://man.plustar.jp/manpage/man2/dup2.2.html - [similar]
Man page of DUP 7577
DUP Section: Linux Programmer's Manual (2) Updated: 2020-11-01 Index JM Home Page 名前 dup, dup2 ... URCE /* feature_test_macros (7) 参照 */ #include < fcntl.h > /* 定数 O_* の定義の取得 */ #include < unistd. ... 。複製されたディスクリプターの close-on-exec flag ( fcntl (2) 参照) は off となる。 dup2() dup2 () システムコ ... fd が範囲を超えた時に返されるエラーは、 dup2 () と fcntl( ..., F_DUPFD , ... ) では異っている。 dup2 () が ... からのエラーを処理する */ } } 関連項目 close (2), fcntl (2), open (2), pidfd_getfd (2) この文書について こ ...
https://man.plustar.jp/manpage/man2/dup3.2.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 NEXT

This document was created by man2html, using the manual pages.
Time: 13:30:26 GMT, January 09, 2022