manページ検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 13 for nbytes (0.009 sec.)
Man page of SELECT_TUT 12985
SELECT_TUT Section: Linux Programmer's Manual (2) Updated: 2020-04-11 Index JM Home Page 名前 se ... _FAILURE); for (;;) { int ready, nfds = 0; ssize_t nbytes; fd_set readfds, writefds, exceptfds; FD_ZERO(&rea ... f (fd1 > 0 && FD_ISSET(fd1, &exceptfds)) { char c; nbytes = recv(fd1, &c, 1, MSG_OOB); if (nbytes < 1) SHUT_ ... f (fd2 > 0 && FD_ISSET(fd2, &exceptfds)) { char c; nbytes = recv(fd2, &c, 1, MSG_OOB); if (nbytes < 1) SHUT_ ... _OOB); } if (fd1 > 0 && FD_ISSET(fd1, &readfds)) { nbytes = read(fd1, buf1 + buf1_avail, BUF_SIZE - buf1_ava ...
https://man.plustar.jp/manpage/man2/select_tut.2.html - [similar]
Man page of CACHEFLUSH 11120
CACHEFLUSH Section: Linux Programmer's Manual (2) Updated: 2007-05-26 Index JM Home Page 名前 ca ... asm/cachectl.h > int cacheflush(char * addr , int nbytes , int cache ); 説明 cacheflush () は addr から (ad ... dr+nbytes-1) の範囲のユーザーアドレスに対応する 指定されたキ ... にエラーが指示される。 エラー EFAULT addr から (addr+nbytes-1) の範囲のアドレスの全てまたは一部が アクセス可能 ... すべきではない。 バグ 現在の実装では、引き数 addr と nbytes は無視される。そのため、 常に全てのキャッシュがフラ ...
https://man.plustar.jp/manpage/man2/cacheflush.2.html - [similar]
Man page of SYNC_FILE_RANGE 9466
SYNC_FILE_RANGE Section: Linux Programmer's Manual (2) Updated: 2017-09-15 Index JM Home Page 名 ... sync_file_range(int fd , off64_t offset , off64_t nbytes , unsigned int flags ); 説明 sync_file_range () を ... t は、同期を行うファイルの領域の開始バイトである。 nbytes には同期を行う領域の長さをバイト単位で指定する。 n ... ffset はページ境界にあわせて切り下げられ、 (offset+nbytes-1) はページ境界にあわせて切り上げられる。 ビットマ ... s に不正なビットが指定されている。または offset か nbytes が不正である。 EIO I/O エラー。 ENOMEM メモリー不足 ...
https://man.plustar.jp/manpage/man2/arm_sync_file_range.2.html - [similar]
Man page of SYNC_FILE_RANGE 9466
SYNC_FILE_RANGE Section: Linux Programmer's Manual (2) Updated: 2017-09-15 Index JM Home Page 名 ... sync_file_range(int fd , off64_t offset , off64_t nbytes , unsigned int flags ); 説明 sync_file_range () を ... t は、同期を行うファイルの領域の開始バイトである。 nbytes には同期を行う領域の長さをバイト単位で指定する。 n ... ffset はページ境界にあわせて切り下げられ、 (offset+nbytes-1) はページ境界にあわせて切り上げられる。 ビットマ ... s に不正なビットが指定されている。または offset か nbytes が不正である。 EIO I/O エラー。 ENOMEM メモリー不足 ...
https://man.plustar.jp/manpage/man2/sync_file_range.2.html - [similar]
Man page of SYNC_FILE_RANGE 9466
SYNC_FILE_RANGE Section: Linux Programmer's Manual (2) Updated: 2017-09-15 Index JM Home Page 名 ... sync_file_range(int fd , off64_t offset , off64_t nbytes , unsigned int flags ); 説明 sync_file_range () を ... t は、同期を行うファイルの領域の開始バイトである。 nbytes には同期を行う領域の長さをバイト単位で指定する。 n ... ffset はページ境界にあわせて切り下げられ、 (offset+nbytes-1) はページ境界にあわせて切り上げられる。 ビットマ ... s に不正なビットが指定されている。または offset か nbytes が不正である。 EIO I/O エラー。 ENOMEM メモリー不足 ...
https://man.plustar.jp/manpage/man2/sync_file_range2.2.html - [similar]
Man page of READLINK 9026
READLINK Section: Linux Programmer's Manual (2) Updated: 2020-06-09 Index JM Home Page 名前 read ... char *argv[]) { struct stat sb; char *buf; ssize_t nbytes, bufsiz; if (argc != 2) { fprintf(stderr, "Usage: ... == NULL) { perror("malloc"); exit(EXIT_FAILURE); } nbytes = readlink(argv[1], buf, bufsiz); if (nbytes == -1 ... } printf("'%s' points to '%.*s'\n", argv[1], (int) nbytes, buf); /* If the return value was equal to the buf ... he returned target may have been truncated. */ if (nbytes == bufsiz) printf("(Returned buffer may have been ...
https://man.plustar.jp/manpage/man2/readlink.2.html - [similar]
Man page of READLINK 9026
READLINK Section: Linux Programmer's Manual (2) Updated: 2020-06-09 Index JM Home Page 名前 read ... char *argv[]) { struct stat sb; char *buf; ssize_t nbytes, bufsiz; if (argc != 2) { fprintf(stderr, "Usage: ... == NULL) { perror("malloc"); exit(EXIT_FAILURE); } nbytes = readlink(argv[1], buf, bufsiz); if (nbytes == -1 ... } printf("'%s' points to '%.*s'\n", argv[1], (int) nbytes, buf); /* If the return value was equal to the buf ... he returned target may have been truncated. */ if (nbytes == bufsiz) printf("(Returned buffer may have been ...
https://man.plustar.jp/manpage/man2/readlinkat.2.html - [similar]
Man page of GETDIRENTRIES 8129
GETDIRENTRIES Section: Linux Programmer's Manual (3) Updated: 2016-03-15 Index JM Home Page 名前 ... ssize_t getdirentries(int fd , char * buf , size_t nbytes , off_t * basep ); glibc 向けの機能検査マクロの要件 ... クトリからエントリーを読み、 buf に格納する。最大で nbytes が読み込まれる。読み込みはオフセット *basep から開 ...
https://man.plustar.jp/manpage/man3/getdirentries.3.html - [similar]
Man page of AIO_READ 7583
AIO_READ Section: Linux Programmer's Manual (3) Updated: 2020-06-09 Index JM Home Page 名前 aio_ ... 数は aiocb が指す構造体の aio_fildes , aio_buf , aio_nbytes に (この順序で) 対応する ( aiocb 構造体の説明は ai ... プターでない。 EINVAL aio_offset , aio_reqprio , aio_nbytes のうち 1 つ以上が無効である。 ENOSYS aio_read () は ...
https://man.plustar.jp/manpage/man3/aio_read.3.html - [similar]
Man page of AIO_WRITE 7583
AIO_WRITE Section: Linux Programmer's Manual (3) Updated: 2017-09-15 Index JM Home Page 名前 aio ... 数は aiocb が指す構造体の aio_fildes , aio_buf , aio_nbytes に (この順序で) 対応する ( aiocb 構造体の説明は ai ... を超えている。 EINVAL aio_offset , aio_reqprio , aio_nbytes のうち 1 つ以上が無効である。 ENOSYS aio_write () ...
https://man.plustar.jp/manpage/man3/aio_write.3.html - [similar]
PREV 1 2 NEXT

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