manページ検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 288 for perror (0.002 sec.)
Man page of ASSERT_PERROR 12234
ASSERT_PERROR Section: Linux Programmer's Manual (3) Updated: 2017-09-15 Index JM Home Page 名前 ... assert_perror - test errnum and abort 書式 #define _GNU_SOURCE / ... cros (7) 参照 */ #include < assert.h > void assert_perror(int errnum ); 説明 最後に < assert.h > がインクルー ... にマクロ NDEBUG が定義されていた場合、マクロ assert_perror () は何のコードも生成せず、したがって全く何もしない ... 。 そうでない場合、マクロ assert_perror () は標準エラーにエラーメッセージを表示し、 errnum ...
https://man.plustar.jp/manpage/man3/assert_perror.3.html - [similar]
Man page of PERROR 11783
PERROR Section: Linux Programmer's Manual (3) Updated: 2014-05-28 Index JM Home Page 名前 perror ... メッセージを出力する 書式 #include < stdio.h > void perror(const char * s ); #include < errno.h > const char ... 照): sys_errlist , sys_nerr : _BSD_SOURCE 説明 関数 perror () は、システムコールやライブラリ関数の呼び出しにお ... る)。 多くのライブラリ関数も同様の動作となる。 関数 perror () は、このエラーコードの可読なメッセージへの変換を ... ことがあるからだ。 よって、失敗した呼び出しの直後に perror () を呼ばない場合には errno の値を 保存しておかなけ ...
https://man.plustar.jp/manpage/man3/perror.3.html - [similar]
Man page of PERROR 11783
PERROR Section: Linux Programmer's Manual (3) Updated: 2014-05-28 Index JM Home Page 名前 perror ... メッセージを出力する 書式 #include < stdio.h > void perror(const char * s ); #include < errno.h > const char ... 照): sys_errlist , sys_nerr : _BSD_SOURCE 説明 関数 perror () は、システムコールやライブラリ関数の呼び出しにお ... る)。 多くのライブラリ関数も同様の動作となる。 関数 perror () は、このエラーコードの可読なメッセージへの変換を ... ことがあるからだ。 よって、失敗した呼び出しの直後に perror () を呼ばない場合には errno の値を 保存しておかなけ ...
https://man.plustar.jp/manpage/man3/sys_errlist.3.html - [similar]
Man page of PERROR 11783
PERROR Section: Linux Programmer's Manual (3) Updated: 2014-05-28 Index JM Home Page 名前 perror ... メッセージを出力する 書式 #include < stdio.h > void perror(const char * s ); #include < errno.h > const char ... 照): sys_errlist , sys_nerr : _BSD_SOURCE 説明 関数 perror () は、システムコールやライブラリ関数の呼び出しにお ... る)。 多くのライブラリ関数も同様の動作となる。 関数 perror () は、このエラーコードの可読なメッセージへの変換を ... ことがあるからだ。 よって、失敗した呼び出しの直後に perror () を呼ばない場合には errno の値を 保存しておかなけ ...
https://man.plustar.jp/manpage/man3/sys_nerr.3.html - [similar]
Man page of SELECT_TUT 7376
SELECT_TUT Section: Linux Programmer's Manual (2) Updated: 2020-04-11 Index JM Home Page 名前 se ... f (sigprocmask(SIG_BLOCK, &sigmask, NULL) == -1) { perror("sigprocmask"); exit(EXIT_FAILURE); } sa.sa_flags ... _mask); if (sigaction(SIGCHLD, &sa, NULL) == -1) { perror("sigaction"); exit(EXIT_FAILURE); } sigemptyset(&e ... socket(AF_INET, SOCK_STREAM, 0); if (lfd == -1) { perror("socket"); return -1; } yes = 1; if (setsockopt(lf ... _SOCKET, SO_REUSEADDR, &yes, sizeof(yes)) == -1) { perror("setsockopt"); close(lfd); return -1; } memset(&ad ...
https://man.plustar.jp/manpage/man2/select_tut.2.html - [similar]
Man page of FANOTIFY 7261
FANOTIFY Section: Linux Programmer's Manual (7) Updated: 2020-11-01 Index JM Home Page 名前 fano ... sizeof(buf)); if (len == -1 && errno != EAGAIN) { perror("read"); exit(EXIT_FAILURE); } /* 読み出せるデータ ... th, path, sizeof(path) - 1); if (path_len == -1) { perror("readlink"); exit(EXIT_FAILURE); } path[path_len] ... NONBLOCK, O_RDONLY | O_LARGEFILE); if (fd == -1) { perror("fanotify_init"); exit(EXIT_FAILURE); } /* 指定され ... ERM | FAN_CLOSE_WRITE, AT_FDCWD, argv[1]) == -1) { perror("fanotify_mark"); exit(EXIT_FAILURE); } /* ポーリン ...
https://man.plustar.jp/manpage/man7/fanotify.7.html - [similar]
Man page of UNIX 7041
UNIX Section: Linux Programmer's Manual (7) Updated: 2020-11-01 Index JM Home Page 名前 unix - ロ ... SOCK_SEQPACKET, 0); if (connection_socket == -1) { perror("socket"); exit(EXIT_FAILURE); } /* * For portabil ... sockaddr *) &name, sizeof(name)); if (ret == -1) { perror("bind"); exit(EXIT_FAILURE); } /* * Prepare for ac ... = listen(connection_socket, 20); if (ret == -1) { perror("listen"); exit(EXIT_FAILURE); } /* This is the ma ... tion_socket, NULL, NULL); if (data_socket == -1) { perror("accept"); exit(EXIT_FAILURE); } result = 0; for ( ...
https://man.plustar.jp/manpage/man7/unix.7.html - [similar]
Man page of MBSTOWCS 6696
MBSTOWCS Section: Linux Programmer's Manual (3) Updated: 2020-11-01 Index JM Home Page 名前 mbst ... ocale */ if (setlocale(LC_ALL, argv[1]) == NULL) { perror("setlocale"); exit(EXIT_FAILURE); } /* Calculate t ... cs(NULL, argv[2], 0); if (mbslen == (size_t) -1) { perror("mbstowcs"); exit(EXIT_FAILURE); } /* Describe the ... lloc(mbslen + 1, sizeof(*wcs)); if (wcs == NULL) { perror("calloc"); exit(EXIT_FAILURE); } /* Convert the mu ... stowcs(wcs, argv[2], mbslen + 1) == (size_t) -1) { perror("mbstowcs"); exit(EXIT_FAILURE); } printf("Wide ch ...
https://man.plustar.jp/manpage/man3/mbstowcs.3.html - [similar]
Man page of SOCKATMARK 6361
SOCKATMARK Section: Linux Programmer's Manual (3) Updated: 2020-06-09 Index JM Home Page 名前 so ... { atmark = sockatmark(sockfd); if (atmark == -1) { perror("sockatmark"); break; } if (atmark) break; s = rea ... d(sockfd, buf, BUF_LEN); if (s == -1) perror("read"); if (s <= 0) break; } if (atmark == 1) { i ... f (recv(sockfd, &oobdata, 1, MSG_OOB) == -1) { perror("recv"); ... } } 関連項目 fcntl (2), recv (2), sen ...
https://man.plustar.jp/manpage/man3/sockatmark.3.html - [similar]
Man page of TEE 6131
TEE Section: Linux Programmer's Manual (2) Updated: 2020-06-09 Index JM Home Page 名前 tee - パイ ... WRONLY | O_CREAT | O_TRUNC, 0644); if (fd == -1) { perror("open"); exit(EXIT_FAILURE); } do { /* * tee stdin ... CK); if (len < 0) { if (errno == EAGAIN) continue; perror("tee"); exit(EXIT_FAILURE); } else if (len == 0) b ... LL, fd, NULL, len, SPLICE_F_MOVE); if (slen < 0) { perror("splice"); break; } len -= slen; } } while (1); cl ...
https://man.plustar.jp/manpage/man2/tee.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