manページ検索

phrase: max: clip:
target: order:
Results of 191 - 200 of about 432 for exit (0.031 sec.)
Man page of SETALIASENT 4184
SETALIASENT Section: Linux Programmer's Manual (3) Updated: 2020-06-09 Index JM Home Page 名前 s ... ias_name); } if (errno) { perror("reading alias"); exit(EXIT_FAILURE); } endaliasent(); exit(EXIT_SUCCESS) ...
https://man.plustar.jp/manpage/man3/setaliasent.3.html - [similar]
Man page of RAND 4142
RAND Section: Linux Programmer's Manual (3) Updated: 2020-11-01 Index JM Home Page 名前 rand, sr ... f(stderr, "Usage: %s <seed> <nloops>\n", argv[0]); exit(EXIT_FAILURE); } seed = atoi(argv[1]); nloops = at ... < nloops; j++) { r = rand(); printf("%d\n", r); } exit(EXIT_SUCCESS); } 関連項目 drand48 (3), random (3) ...
https://man.plustar.jp/manpage/man3/rand.3.html - [similar]
Man page of RAND 4142
RAND Section: Linux Programmer's Manual (3) Updated: 2020-11-01 Index JM Home Page 名前 rand, sr ... f(stderr, "Usage: %s <seed> <nloops>\n", argv[0]); exit(EXIT_FAILURE); } seed = atoi(argv[1]); nloops = at ... < nloops; j++) { r = rand(); printf("%d\n", r); } exit(EXIT_SUCCESS); } 関連項目 drand48 (3), random (3) ...
https://man.plustar.jp/manpage/man3/rand_r.3.html - [similar]
Man page of RAND 4142
RAND Section: Linux Programmer's Manual (3) Updated: 2020-11-01 Index JM Home Page 名前 rand, sr ... f(stderr, "Usage: %s <seed> <nloops>\n", argv[0]); exit(EXIT_FAILURE); } seed = atoi(argv[1]); nloops = at ... < nloops; j++) { r = rand(); printf("%d\n", r); } exit(EXIT_SUCCESS); } 関連項目 drand48 (3), random (3) ...
https://man.plustar.jp/manpage/man3/srand.3.html - [similar]
Man page of EXECVE 4100
EXECVE Section: Linux Programmer's Manual (2) Updated: 2020-08-13 Index JM Home Page 名前 execve ... は保持されない ( mlock (2), mlockall (2))。 * 終了 (exit) ハンドラーは保持されない ( atexit (3), on_exit (3 ... < argc; j++) printf("argv[%d]: %s\n", j, argv[j]); exit(EXIT_SUCCESS); } 以下のプログラムは、コマンドライン ... tf(stderr, "Usage: %s <file-to-exec>\n", argv[0]); exit(EXIT_FAILURE); } newargv[0] = argv[1]; execve(argv ... or("execve"); /* execve() returns only on error */ exit(EXIT_FAILURE); } 二つ目のプログラムを使って一つ目の ...
https://man.plustar.jp/manpage/man2/execve.2.html - [similar]
Man page of POLL 4100
POLL Section: Linux Programmer's Manual (2) Updated: 2020-04-11 Index JM Home Page 名前 poll, pp ... lude < stdlib.h > #include < unistd.h > #define errExit(msg) do { perror(msg); exit(EXIT_FAILURE); \ } whi ... { fprintf(stderr, "Usage: %s file...\n", argv[0]); exit(EXIT_FAILURE); } num_open_fds = nfds = argc - 1; p ... nfds, sizeof(struct pollfd)); if (pfds == NULL) errExit("malloc"); /* Open each file on command line, and ... n(argv[j + 1], O_RDONLY); if (pfds[j].fd == -1) errExit("open"); printf("Opened \"%s\" on fd %d\n", argv[j ...
https://man.plustar.jp/manpage/man2/poll.2.html - [similar]
Man page of POLL 4100
POLL Section: Linux Programmer's Manual (2) Updated: 2020-04-11 Index JM Home Page 名前 poll, pp ... lude < stdlib.h > #include < unistd.h > #define errExit(msg) do { perror(msg); exit(EXIT_FAILURE); \ } whi ... { fprintf(stderr, "Usage: %s file...\n", argv[0]); exit(EXIT_FAILURE); } num_open_fds = nfds = argc - 1; p ... nfds, sizeof(struct pollfd)); if (pfds == NULL) errExit("malloc"); /* Open each file on command line, and ... n(argv[j + 1], O_RDONLY); if (pfds[j].fd == -1) errExit("open"); printf("Opened \"%s\" on fd %d\n", argv[j ...
https://man.plustar.jp/manpage/man2/ppoll.2.html - [similar]
Man page of SCANDIR 4100
SCANDIR Section: Linux Programmer's Manual (3) Updated: 2020-06-09 Index JM Home Page 名前 scand ... ULL, alphasort); if (n == -1) { perror("scandir"); exit(EXIT_FAILURE); } while (n--) { printf("%s\n", name ... [n]->d_name); free(namelist[n]); } free(namelist); exit(EXIT_SUCCESS); } 関連項目 closedir (3), fnmatch (3 ...
https://man.plustar.jp/manpage/man3/alphasort.3.html - [similar]
Man page of DLOPEN 4100
DLOPEN Section: Linux Programmer's Manual (3) Updated: 2014-10-02 Index JM Home Page 名前 dlclos ... ている場合のみ有効となる。 glibc 2.2.3 以降では、 atexit (3) を使って、ライブラリがアンロードされる際に自動 ... 的に呼び出される 終了ハンドラー (exit handler) を登録することができる。 歴史 dlopen イン ... if (!handle) { fprintf(stderr, "%s\n", dlerror()); exit(EXIT_FAILURE); } dlerror(); /* Clear any existing ... (error != NULL) { fprintf(stderr, "%s\n", error); exit(EXIT_FAILURE); } printf("%f\n", (*cosine)(2.0)); d ...
https://man.plustar.jp/manpage/man3/dlclose.3.html - [similar]
Man page of DLOPEN 4100
DLOPEN Section: Linux Programmer's Manual (3) Updated: 2014-10-02 Index JM Home Page 名前 dlclos ... ている場合のみ有効となる。 glibc 2.2.3 以降では、 atexit (3) を使って、ライブラリがアンロードされる際に自動 ... 的に呼び出される 終了ハンドラー (exit handler) を登録することができる。 歴史 dlopen イン ... if (!handle) { fprintf(stderr, "%s\n", dlerror()); exit(EXIT_FAILURE); } dlerror(); /* Clear any existing ... (error != NULL) { fprintf(stderr, "%s\n", error); exit(EXIT_FAILURE); } printf("%f\n", (*cosine)(2.0)); d ...
https://man.plustar.jp/manpage/man3/dlmopen.3.html - [similar]
PREV 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 NEXT

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