manページ検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 960 for IN (0.041 sec.)
Man page of UNIX 5768
UNIX Section: Linux Programmer's Manual (7) Updated: 2020-11-01 Index JM Home Page 名前 unix - ロ ... ーカルな プロセス間通信用のソケット 書式 #include < sys/socket.h > #include < sys/un.h > unix_s ... IX, type, 0); error = socketpair(AF_UNIX, type, 0, int * sv ); 説明 AF_UNIX ( AF_LOCAL とも言われる) ソケ ... システムのパス名に 結び付けることもできる。さらに Linux では、ファイル システムに依存しない抽象名前空間 ... namespace) もサポートしている。 Valid socket types in the UNIX domain are: SOCK_STREAM , for a stream-or ...
https://man.plustar.jp/manpage/man7/unix.7.html - [similar]
Man page of SPLICE 5681
SPLICE Section: Linux Programmer's Manual (2) Updated: 2020-06-09 Index JM Home Page 名前 splice ... - パイプとの間でデータを継ぎ合わせる 書式 #define _GNU_SOURCE /* feature_test_macros (7) 参照 */ #i ... nclude < fcntl.h > ssize_t splice(int fd_in , loff_t * off_in , int fd_out , loff_t * o ... ff_out , size_t len , unsigned int flags ); 説明 splice () は、カーネルアドレス空間と ... 間でデータの移動を行う。 ファイルディスクリプター fd_in からファイルディスクリプター fd_out へ最大 len バイ ...
https://man.plustar.jp/manpage/man2/splice.2.html - [similar]
Man page of RESOLV.CONF 5649
RESOLV.CONF Section: Linux Programmer's Manual (5) Updated: 2020-08-13 Index JM Home Page 名前 r ... /etc/resolv.conf 説明 The resolver is a set of routines in the C library that provide access to the Inte ... rnet Domain Name System (DNS). The resolver configuration file ... contains information that is read by the resolver routines ... the first time they are invoked by a process. The file is designed to be huma ...
https://man.plustar.jp/manpage/man5/resolv.conf.5.html - [similar]
Man page of OPEN 5368
OPEN Section: Linux Programmer's Manual (2) Updated: 2020-11-01 Index JM Home Page 名前 open, op ... enat, creat - ファイルのオープン、作成を行う 書式 #include < sys/types.h > #include < sys/stat.h > #incl ... ude < fcntl.h > int open(const char * pathname , int flags ); int ope ... n(const char * pathname , int flags , mode_t mode ); int creat(const char * pat ... hname , mode_t mode ); int openat(int dirfd , const char * pathname , int fl ...
https://man.plustar.jp/manpage/man2/creat.2.html - [similar]
Man page of OPEN 5368
OPEN Section: Linux Programmer's Manual (2) Updated: 2020-11-01 Index JM Home Page 名前 open, op ... enat, creat - ファイルのオープン、作成を行う 書式 #include < sys/types.h > #include < sys/stat.h > #incl ... ude < fcntl.h > int open(const char * pathname , int flags ); int ope ... n(const char * pathname , int flags , mode_t mode ); int creat(const char * pat ... hname , mode_t mode ); int openat(int dirfd , const char * pathname , int fl ...
https://man.plustar.jp/manpage/man2/open.2.html - [similar]
Man page of OPEN 5368
OPEN Section: Linux Programmer's Manual (2) Updated: 2020-11-01 Index JM Home Page 名前 open, op ... enat, creat - ファイルのオープン、作成を行う 書式 #include < sys/types.h > #include < sys/stat.h > #incl ... ude < fcntl.h > int open(const char * pathname , int flags ); int ope ... n(const char * pathname , int flags , mode_t mode ); int creat(const char * pat ... hname , mode_t mode ); int openat(int dirfd , const char * pathname , int fl ...
https://man.plustar.jp/manpage/man2/openat.2.html - [similar]
Man page of PROC 5174
PROC Section: Linux Programmer's Manual (5) Updated: 2015-01-22 Index JM Home Page 名前 proc - プ ... ている。 getauxval (3) も参照。 /proc/[pid]/cgroup (Linux 2.6.24 以降) このファイルは、プロセスやタスクが所 ... 有効にした場合だけである。 /proc/[pid]/clear_refs (Linux 2.6.22 以降) このファイルは書き込み専用ファイルで ... このファイルには以下の値を書き込むことができる。 1 (Linux 2.6.22 以降) Reset the PG_Referenced and ACCESSE ... iated with the process. (Before kernel 2.6.32, writing any nonzero value to this file had this effect.) ...
https://man.plustar.jp/manpage/man5/proc.5.html - [similar]
Man page of PROC 5174
PROC Section: Linux Programmer's Manual (5) Updated: 2015-01-22 Index JM Home Page 名前 proc - プ ... ている。 getauxval (3) も参照。 /proc/[pid]/cgroup (Linux 2.6.24 以降) このファイルは、プロセスやタスクが所 ... 有効にした場合だけである。 /proc/[pid]/clear_refs (Linux 2.6.22 以降) このファイルは書き込み専用ファイルで ... このファイルには以下の値を書き込むことができる。 1 (Linux 2.6.22 以降) Reset the PG_Referenced and ACCESSE ... iated with the process. (Before kernel 2.6.32, writing any nonzero value to this file had this effect.) ...
https://man.plustar.jp/manpage/man5/procfs.5.html - [similar]
Man page of IP 5174
IP Section: Linux Programmer's Manual (7) Updated: 2020-11-01 Index JM Home Page 名前 ip - Linux ... IPv4 プロトコルの実装 書式 #include < sys/socket.h > #include < netinet/in.h > #i ... nclude < netinet/ip.h > /* 上記のスーパーセット */ tcp_socket = s ... ocket(AF_INET, SOCK_STREAM, 0); udp_socket = socket(AF_INET, S ... OCK_DGRAM, 0); raw_socket = socket(AF_INET, SOCK_RAW, protocol ); 説明 Linux は RFC 791 と ...
https://man.plustar.jp/manpage/man7/ip.7.html - [similar]
Man page of VFORK 4887
VFORK Section: Linux Programmer's Manual (2) Updated: 2017-09-15 Index JM Home Page 名前 vfork - ... 子プロセスを生成し親プロセスを停止させる 書式 #include < sys/types.h > #include < unistd.h > pid_t v ... ールした場合の動作が 未定義であるという点が異なる。 LINUX での説明 vfork () は fork (2) と全く同じように呼 ... に有用かもしれない。 vfork () differs from fork (2) in that the calling thread is suspended until the chi ... ld terminates (either normally, by calling _exit (2), or abn ...
https://man.plustar.jp/manpage/man2/vfork.2.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 NEXT

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