manページ検索

phrase: max: clip:
target: order:
Results of 61 - 70 of about 224 for wait (0.082 sec.)
Man page of CLONE 4941
CLONE Section: Linux Programmer's Manual (2) Updated: 2014-09-21 Index JM Home Page 名前 clone, ... として SIGCHLD 以外が指定された場合、親プロセスは、 wait (2) で子プロセスを待つ際に、オプションとして __WAL ... (もしくは他の終了シグナル) は送信されない。 また、 wait (2) を使って終了したスレッドの状態を取得することも ... スレッドグループのどのスレッドであっても その子供を wait (2) できる。 Linux 2.5.35 以降では、 CLONE_THREAD ... 選ばれる。 スレッドグループに属す複数のスレッドが sigwaitinfo (2) を使って同じシグナルを待っている場合、 これ ...
https://man.plustar.jp/manpage/man2/clone3.2.html - [similar]
Man page of SIGACTION 4941
SIGACTION Section: Linux Programmer's Manual (2) Updated: 2020-12-21 Index JM Home Page 名前 sig ... してハンドラーを設定する際にのみ意味を持つ。 SA_NOCLDWAIT (Linux 2.6 以降) (Linux 2.6 以降) signum が SIGCHL ... たときに 子プロセスをゾンビプロセスに変化させない ( waitpid (2) も参照)。 このフラグは、 SIGCHLD に対してハ ... 。 SIGCHLD に対してハンドラーを設定する際に SA_NOCLDWAIT フラグをセットした場合、 子プロセスが終了した際に ... (2) や times (2) と異なり) これらのフィールドには wait 待ちの子プロセスにより使用された時間は含まれない。 ...
https://man.plustar.jp/manpage/man2/rt_sigaction.2.html - [similar]
Man page of SIGACTION 4941
SIGACTION Section: Linux Programmer's Manual (2) Updated: 2020-12-21 Index JM Home Page 名前 sig ... してハンドラーを設定する際にのみ意味を持つ。 SA_NOCLDWAIT (Linux 2.6 以降) (Linux 2.6 以降) signum が SIGCHL ... たときに 子プロセスをゾンビプロセスに変化させない ( waitpid (2) も参照)。 このフラグは、 SIGCHLD に対してハ ... 。 SIGCHLD に対してハンドラーを設定する際に SA_NOCLDWAIT フラグをセットした場合、 子プロセスが終了した際に ... (2) や times (2) と異なり) これらのフィールドには wait 待ちの子プロセスにより使用された時間は含まれない。 ...
https://man.plustar.jp/manpage/man2/sigaction.2.html - [similar]
Man page of EXIT 4941
EXIT Section: Linux Programmer's Manual (3) Updated: 2020-02-09 Index JM Home Page 名前 exit - プ ... バイト (つまり status & 0xFF ) を親プロセスへ返す ( wait (2) を参照)。 atexit (3) や on_exit (3) によって 登 ... e are three cases: • If the parent has set SA_NOCLDWAIT , or has set the SIGCHLD handler to SIG_IGN , the ... nd the child dies immediately. • If the parent was waiting on the child, it is notified of the exit status ... table. This allows the parent to subsequently use waitpid (2) (or similar) to learn the termination statu ...
https://man.plustar.jp/manpage/man3/exit.3.html - [similar]
Man page of SYSTEM 4941
SYSTEM Section: Linux Programmer's Manual (3) Updated: 2019-03-06 Index JM Home Page 名前 system ... 終了ステータスである)。 最後の 2 つの場合、返り値は "wait status" であり、 waitpid (2) に書かれているマクロ ... 便性がもたらされる。この関数は fork (2), execl (3), waitpid (2) の呼び出しにおける詳細をすべて行うとともに、 ... 機能検査マクロ _XOPEN_SOURCE が定義された場合には、 waitpid (2) で説明されているマクロ群 ( WEXITSTATUS () 等 ... cve (2), fork (2), sigaction (2), sigprocmask (2), wait (2), exec (3), signal (7) この文書について この ma ...
https://man.plustar.jp/manpage/man3/system.3.html - [similar]
Man page of PING 4941
PING Section: Maintenance Commands (8) Index JM Home Page BSD mandoc Linux NetKit (0.17) 名前 pi ... ストに送る 書式 ping [- LRdfnqrv ] [- c count ] [- i wait ] [- l preload ] [- p pattern ] [- s packetsize ] ... [- t ttl ] [- w waittime ] [- I interface address ] 説明 ping は ICMP の ... 常に負荷をかけるので、注意して使うべきである。 Ef -i wait 個々のパケットの間に wait 秒待つ。 デフォルトでは、 ... ECHO_RESPONSE 以外の ICMP パケットを表示する。 -w waittime どのような場合でも関係なく、 ping を waittime ...
https://man.plustar.jp/manpage/man8/ping.8.html - [similar]
Man page of SUDOREPLAY 4941
SUDOREPLAY Section: System Manager's Manual (8) Updated: May 4, 2016 Index JM Home Page 名前 sud ... and で結合していると見なされるからだ。 -m , --max-wait max_wait キーを押してから次のキーを押すまでの間や、 ... ると、 sudoreplay はそうした間合いを、 長くても max_wait 秒以内に抑えるようになる。この値は、 たとえば 2.5 ...
https://man.plustar.jp/manpage/man8/sudoreplay.8.html - [similar]
Man page of PIPE 4889
PIPE Section: Linux Programmer's Manual (2) Updated: 2020-06-09 Index JM Home Page 名前 pipe, pi ... ラムのソース #include < sys/types.h > #include < sys/wait.h > #include < stdio.h > #include < stdlib.h > #in ... close(pipefd[1]); /* 読み込み側が EOF に出会う */ wait(NULL); /* 子プロセスを待つ */ exit(EXIT_SUCCESS); ...
https://man.plustar.jp/manpage/man2/pipe.2.html - [similar]
Man page of PIPE 4889
PIPE Section: Linux Programmer's Manual (2) Updated: 2020-06-09 Index JM Home Page 名前 pipe, pi ... ラムのソース #include < sys/types.h > #include < sys/wait.h > #include < stdio.h > #include < stdlib.h > #in ... close(pipefd[1]); /* 読み込み側が EOF に出会う */ wait(NULL); /* 子プロセスを待つ */ exit(EXIT_SUCCESS); ...
https://man.plustar.jp/manpage/man2/pipe2.2.html - [similar]
Man page of REBOOT 4889
REBOOT Section: Linux Programmer's Manual (2) Updated: 2019-03-06 Index JM Home Page 名前 reboot ... CMD_RESTART2 The "init" process is terminated, and wait (2) in the parent process reports that the child w ... OOT_CMD_HALT The "init" process is terminated, and wait (2) in the parent process reports that the child w ...
https://man.plustar.jp/manpage/man2/reboot.2.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 NEXT

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