manページ検索

phrase: max: clip:
target: order:
Results of 21 - 30 of about 589 for On (0.053 sec.)
Man page of EXECVE 5566
EXECVE Section: Linux Programmer's Manual (2) Updated: 2020-08-13 Index JM Home Page 名前 execve ... ムを実行する 書式 #include < unistd.h > int execve(const char * pathname , char *const argv [], char *con ... るスクリプトでなければならない。 #! interpreter [optional-arg] 後者の詳細は、後ろの「インタープリタースクリ ... the new program as its command-line arguments. By convention, the first of these strings (i.e., argv[0] ... ) should contain the filename associated with the file being ex ...
https://man.plustar.jp/manpage/man2/execve.2.html - [similar]
Man page of SOCKETPAIR 5566
SOCKETPAIR Section: Linux Programmer's Manual (2) Updated: 2020-06-09 Index JM Home Page 名前 so ... 1] . The two sockets are indistinguishable. 返り値 On success, zero is returned. On error, -1 is returne ... rno is set appropriately, and sv is left unchanged On Linux (and other systems), socketpair () does not ... modify sv on failure. A requirement standardizing this behavior ... はソケットのペアの作成がサポートされていない。 EPROTONOSUPPORT このマシンでは指定されたプロトコルがサポー ...
https://man.plustar.jp/manpage/man2/socketpair.2.html - [similar]
Man page of TIME 5506
TIME Section: Linux Programmer's Manual (2) Updated: 2017-09-15 Index JM Home Page 名前 time - 秒 ... ドレス空間の外を指している (ただし「バグ」を参照)。 On systems where the C library time () wrapper functi ... on invokes an implementation provided by the vdso (7) (so that there is no trap ... を近似する変換式を使って、 「紀元からの経過秒数 (seconds since the Epoch)」 を定義している。 この変換式で ... を持たせることになる。 より詳しい原理は POSIX.1 Rationale A.4.15 を参照すること。 On Linux, a call to tim ...
https://man.plustar.jp/manpage/man2/time.2.html - [similar]
Man page of UNIX 5506
UNIX Section: Linux Programmer's Manual (7) Updated: 2020-11-01 Index JM Home Page 名前 unix - ロ ... ented socket that preserves message boundaries (as on most UNIX implementations, UNIX domain datagram so ... ckets are always reliable and don't reorder datagrams); and (since Linux 2.6.4) SOCK ... SEQPACKET , for a sequenced-packet socket that is connection-oriented, preserves message boundaries, and ... 8]; /* Pathname */ }; The sun_family field always contains AF_UNIX . On Linux, sun_path is 108 bytes in ...
https://man.plustar.jp/manpage/man7/unix.7.html - [similar]
Man page of ATOI 5447
ATOI Section: Linux Programmer's Manual (3) Updated: 2020-08-13 Index JM Home Page 名前 atoi, at ... 数型に変換する 書式 #include < stdlib.h > int atoi(const char * nptr ); long atol(const char * nptr ); lo ... ng long atoll(const char * nptr ); glibc 向けの機能検査マ ... 参照): atoll (): _ISOC99_SOURCE || || /* Glibc versions <= 2.19: */ _BSD_SOURCE || _SVID_SOURCE 説明 atoi ... の振る舞いをするが、 文字列のはじめの部分をそれぞれ long や long long に変換する。 返り値 The converted va ...
https://man.plustar.jp/manpage/man3/atoi.3.html - [similar]
Man page of ATOI 5447
ATOI Section: Linux Programmer's Manual (3) Updated: 2020-08-13 Index JM Home Page 名前 atoi, at ... 数型に変換する 書式 #include < stdlib.h > int atoi(const char * nptr ); long atol(const char * nptr ); lo ... ng long atoll(const char * nptr ); glibc 向けの機能検査マ ... 参照): atoll (): _ISOC99_SOURCE || || /* Glibc versions <= 2.19: */ _BSD_SOURCE || _SVID_SOURCE 説明 atoi ... の振る舞いをするが、 文字列のはじめの部分をそれぞれ long や long long に変換する。 返り値 The converted va ...
https://man.plustar.jp/manpage/man3/atol.3.html - [similar]
Man page of ATOI 5447
ATOI Section: Linux Programmer's Manual (3) Updated: 2020-08-13 Index JM Home Page 名前 atoi, at ... 数型に変換する 書式 #include < stdlib.h > int atoi(const char * nptr ); long atol(const char * nptr ); lo ... ng long atoll(const char * nptr ); glibc 向けの機能検査マ ... 参照): atoll (): _ISOC99_SOURCE || || /* Glibc versions <= 2.19: */ _BSD_SOURCE || _SVID_SOURCE 説明 atoi ... の振る舞いをするが、 文字列のはじめの部分をそれぞれ long や long long に変換する。 返り値 The converted va ...
https://man.plustar.jp/manpage/man3/atoll.3.html - [similar]
Man page of ATOI 5447
ATOI Section: Linux Programmer's Manual (3) Updated: 2020-08-13 Index JM Home Page 名前 atoi, at ... 数型に変換する 書式 #include < stdlib.h > int atoi(const char * nptr ); long atol(const char * nptr ); lo ... ng long atoll(const char * nptr ); glibc 向けの機能検査マ ... 参照): atoll (): _ISOC99_SOURCE || || /* Glibc versions <= 2.19: */ _BSD_SOURCE || _SVID_SOURCE 説明 atoi ... の振る舞いをするが、 文字列のはじめの部分をそれぞれ long や long long に変換する。 返り値 The converted va ...
https://man.plustar.jp/manpage/man3/atoq.3.html - [similar]
Man page of WRITE 5387
WRITE Section: Linux Programmer's Manual (2) Updated: 2019-10-10 Index JM Home Page 名前 write - ... 書式 #include < unistd.h > ssize_t write(int fd , const void * buf , size_t count ); 説明 write () は、 ... greater than SSIZE_MAX , the result is implementation-defined; see NOTES for the upper limit on Linux. 返 ... tes. Such partial writes can occur for various reasons; for example, because there was insufficient spac ... e on the disk device to write all of the requested byte ...
https://man.plustar.jp/manpage/man2/write.2.html - [similar]
Man page of EXIT 5327
EXIT Section: Linux Programmer's Manual (3) Updated: 2020-02-09 Index JM Home Page 名前 exit - プ ... 親プロセスへ返す ( wait (2) を参照)。 atexit (3) や on_exit (3) によって 登録された全ての関数は、それらが ... にコールされる。 (登録された関数の中で atexit (3) or on_exit (3) を使って exit 処理中に実行される追加の関数 ... ッシュなど) は中止される。 ある関数が atexit (3) や on_exit (3) を使って複数回登録されていた場合、 その関 ... 1-2008, C89, C99, SVr4, 4.3BSD. 注意 atexit (3) や on_exit (3) を使って登録された関数の中で exit () か l ...
https://man.plustar.jp/manpage/man3/exit.3.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 NEXT

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