manページ検索

phrase: max: clip:
target: order:
Results of 41 - 50 of about 194 for sizeof (0.067 sec.)
Man page of PTHREAD_ATTR_SETAFFINITY_NP 5651
PTHREAD_ATTR_SETAFFINITY_NP Section: Linux Programmer's Manual (3) Updated: 2017-09-15 Index JM ... (バイト単位の) 大きさである。通常は、この引数には sizeof(cpu_set_t) を 指定することだろう。 CPU affinity マ ... るシステムコールに渡される CPU セットの大きさは 常に sizeof(cpu_set_t) であった。 関連項目 sched_setaffinity ( ...
https://man.plustar.jp/manpage/man3/pthread_attr_getaffinity_np.3.html - [similar]
Man page of PTHREAD_ATTR_SETAFFINITY_NP 5651
PTHREAD_ATTR_SETAFFINITY_NP Section: Linux Programmer's Manual (3) Updated: 2017-09-15 Index JM ... (バイト単位の) 大きさである。通常は、この引数には sizeof(cpu_set_t) を 指定することだろう。 CPU affinity マ ... るシステムコールに渡される CPU セットの大きさは 常に sizeof(cpu_set_t) であった。 関連項目 sched_setaffinity ( ...
https://man.plustar.jp/manpage/man3/pthread_attr_setaffinity_np.3.html - [similar]
Man page of INOTIFY 5532
INOTIFY Section: Linux Programmer's Manual (7) Updated: 2020-11-01 Index JM Home Page 名前 inoti ... ト数を表す。 よって、 inotify_event 構造体のサイズは sizeof(struct inotify_event)+len である。 read (2) に渡さ ... はエラー EINVAL で失敗する。 バッファーサイズとして sizeof(struct inotify_event) + NAME_MAX + 1 を指定すれば、 ... (;;) { /* Read some events. */ len = read(fd, buf, sizeof(buf)); if (len == -1 && errno != EAGAIN) { perror( ... る */ for (char *ptr = buf; ptr < buf + len; ptr += sizeof(struct inotify_event) + event->len) { event = (con ...
https://man.plustar.jp/manpage/man7/inotify.7.html - [similar]
Man page of POLL 5413
POLL Section: Linux Programmer's Manual (2) Updated: 2020-04-11 Index JM Home Page 名前 poll, pp ... specifies this argument as a fixed value (equal to sizeof(kernel_sigset_t) ). See sigprocmask (2) for a disc ... um_open_fds = nfds = argc - 1; pfds = calloc(nfds, sizeof(struct pollfd)); if (pfds == NULL) errExit("malloc ... ents & POLLIN) { ssize_t s = read(pfds[j].fd, buf, sizeof(buf)); if (s == -1) errExit("read"); printf(" read ...
https://man.plustar.jp/manpage/man2/poll.2.html - [similar]
Man page of POLL 5413
POLL Section: Linux Programmer's Manual (2) Updated: 2020-04-11 Index JM Home Page 名前 poll, pp ... specifies this argument as a fixed value (equal to sizeof(kernel_sigset_t) ). See sigprocmask (2) for a disc ... um_open_fds = nfds = argc - 1; pfds = calloc(nfds, sizeof(struct pollfd)); if (pfds == NULL) errExit("malloc ... ents & POLLIN) { ssize_t s = read(pfds[j].fd, buf, sizeof(buf)); if (s == -1) errExit("read"); printf(" read ...
https://man.plustar.jp/manpage/man2/ppoll.2.html - [similar]
Man page of SHM_OPEN 5413
SHM_OPEN Section: Linux Programmer's Manual (3) Updated: 2020-11-01 Index JM Home Page 名前 shm_ ... nd-line argument and sizes the object to match the size of the shmbuf structure defined in the header file. ... reate shared memory object and set its size to the size of our structure */ int fd = shm_open(shmpath, O_CRE ... (fd == -1) errExit("shm_open"); if (ftruncate(fd, sizeof(struct shmbuf)) == -1) errExit("ftruncate"); /* Ma ... address space */ struct shmbuf *shmp = mmap(NULL, sizeof(*shmp), PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0) ...
https://man.plustar.jp/manpage/man3/shm_open.3.html - [similar]
Man page of SHM_OPEN 5413
SHM_OPEN Section: Linux Programmer's Manual (3) Updated: 2020-11-01 Index JM Home Page 名前 shm_ ... nd-line argument and sizes the object to match the size of the shmbuf structure defined in the header file. ... reate shared memory object and set its size to the size of our structure */ int fd = shm_open(shmpath, O_CRE ... (fd == -1) errExit("shm_open"); if (ftruncate(fd, sizeof(struct shmbuf)) == -1) errExit("ftruncate"); /* Ma ... address space */ struct shmbuf *shmp = mmap(NULL, sizeof(*shmp), PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0) ...
https://man.plustar.jp/manpage/man3/shm_unlink.3.html - [similar]
Man page of EPOLL_WAIT 5293
EPOLL_WAIT Section: Linux Programmer's Manual (2) Updated: 2020-04-11 Index JM Home Page 名前 ep ... (つまり無限大) として扱われる。したがって、例えば、 sizeof(long) が 4 で、カーネルの HZ の値が 1000 のシステム ... epoll_pwait () ラッパー関数は、この引数に固定値 ( sizeof(sigset_t) と同じ) を指定する。 関連項目 epoll_crea ...
https://man.plustar.jp/manpage/man2/epoll_pwait.2.html - [similar]
Man page of EPOLL_WAIT 5293
EPOLL_WAIT Section: Linux Programmer's Manual (2) Updated: 2020-04-11 Index JM Home Page 名前 ep ... (つまり無限大) として扱われる。したがって、例えば、 sizeof(long) が 4 で、カーネルの HZ の値が 1000 のシステム ... epoll_pwait () ラッパー関数は、この引数に固定値 ( sizeof(sigset_t) と同じ) を指定する。 関連項目 epoll_crea ...
https://man.plustar.jp/manpage/man2/epoll_wait.2.html - [similar]
Man page of MSGOP 5293
MSGOP Section: Linux Programmer's Manual (2) Updated: 2020-11-01 Index JM Home Page 名前 msgrcv, ... ムコールに影響するシステム制限である: MSGMAX Maximum size of a message text, in bytes (default value: 8192 byt ... the CAP_SYS_RESOURCE capability) can increase the size of a message queue beyond MSGMNB using the msgctl (2 ... msg.mtype = msgtype; time(&t); snprintf(msg.mtext, sizeof(msg.mtext), "a message at %s", ctime(&t)); if (msg ... snd(qid, &msg, sizeof(msg.mtext), IPC_NOWAIT) == -1) { perror("msgsnd er ...
https://man.plustar.jp/manpage/man2/msgop.2.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 NEXT

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