downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

> <リソース型
[edit] Last updated: Fri, 10 Feb 2012

view this page in

定義済み定数

以下のシグナルのリストがプロセス制御関数でサポートされています。 これらのシグナルのデフォルト動作の詳細については、 signal(7) のマニュアルを参照ください。

WNOHANG (integer)
WUNTRACED (integer)
SIG_IGN (integer)
SIG_DFL (integer)
SIG_ERR (integer)
SIGHUP (integer)
SIGINT (integer)
SIGQUIT (integer)
SIGILL (integer)
SIGTRAP (integer)
SIGABRT (integer)
SIGIOT (integer)
SIGBUS (integer)
SIGFPE (integer)
SIGKILL (integer)
SIGUSR1 (integer)
SIGSEGV (integer)
SIGUSR2 (integer)
SIGPIPE (integer)
SIGALRM (integer)
SIGTERM (integer)
SIGSTKFLT (integer)
SIGCLD (integer)
SIGCHLD (integer)
SIGCONT (integer)
SIGSTOP (integer)
SIGTSTP (integer)
SIGTTIN (integer)
SIGTTOU (integer)
SIGURG (integer)
SIGXCPU (integer)
SIGXFSZ (integer)
SIGVTALRM (integer)
SIGPROF (integer)
SIGWINCH (integer)
SIGPOLL (integer)
SIGIO (integer)
SIGPWR (integer)
SIGSYS (integer)
SIGBABY (integer)
SIG_BLOCK (integer)
PHP 5.3.0 以降で使用可能です。
SIG_UNBLOCK (integer)
PHP 5.3.0 以降で使用可能です。
SIG_SETMASK (integer)
PHP 5.3.0 以降で使用可能です。
SI_USER (integer)
PHP 5.3.0 以降で使用可能です。
SI_NOINFO (integer)
PHP 5.3.0 以降で使用可能です。
SI_KERNEL (integer)
PHP 5.3.0 以降で使用可能です。
SI_QUEUE (integer)
PHP 5.3.0 以降で使用可能です。
SI_TIMER (integer)
PHP 5.3.0 以降で使用可能です。
SI_MSGGQ (integer)
PHP 5.3.0 以降で使用可能です。
SI_ASYNCIO (integer)
PHP 5.3.0 以降で使用可能です。
SI_SIGIO (integer)
PHP 5.3.0 以降で使用可能です。
SI_TKILL (integer)
PHP 5.3.0 以降で使用可能です。
CLD_EXITED (integer)
PHP 5.3.0 以降で使用可能です。
CLD_KILLED (integer)
PHP 5.3.0 以降で使用可能です。
CLD_DUMPED (integer)
PHP 5.3.0 以降で使用可能です。
CLD_TRAPPED (integer)
PHP 5.3.0 以降で使用可能です。
CLD_STOPPED (integer)
PHP 5.3.0 以降で使用可能です。
CLD_CONTINUED (integer)
PHP 5.3.0 以降で使用可能です。
TRAP_BRKPT (integer)
PHP 5.3.0 以降で使用可能です。
TRAP_TRACE (integer)
PHP 5.3.0 以降で使用可能です。
POLL_IN (integer)
PHP 5.3.0 以降で使用可能です。
POLL_OUT (integer)
PHP 5.3.0 以降で使用可能です。
POLL_MSG (integer)
PHP 5.3.0 以降で使用可能です。
POLL_ERR (integer)
PHP 5.3.0 以降で使用可能です。
POLL_PRI (integer)
PHP 5.3.0 以降で使用可能です。
POLL_HUP (integer)
PHP 5.3.0 以降で使用可能です。
ILL_ILLOPC (integer)
PHP 5.3.0 以降で使用可能です。
ILL_ILLOPN (integer)
PHP 5.3.0 以降で使用可能です。
ILL_ILLADR (integer)
PHP 5.3.0 以降で使用可能です。
ILL_ILLTRP (integer)
PHP 5.3.0 以降で使用可能です。
ILL_PRVOPC (integer)
PHP 5.3.0 以降で使用可能です。
ILL_PRVREG (integer)
PHP 5.3.0 以降で使用可能です。
ILL_COPROC (integer)
PHP 5.3.0 以降で使用可能です。
ILL_BADSTK (integer)
PHP 5.3.0 以降で使用可能です。
FPE_INTDIV (integer)
PHP 5.3.0 以降で使用可能です。
FPE_INTOVF (integer)
PHP 5.3.0 以降で使用可能です。
FPE_FLTDIV (integer)
PHP 5.3.0 以降で使用可能です。
FPE_FLTOVF (integer)
PHP 5.3.0 以降で使用可能です。
FPE_FLTUND (integer)
PHP 5.3.0 以降で使用可能です。
FPE_FLTRES (integer)
PHP 5.3.0 以降で使用可能です。
FPE_FLTINV (integer)
PHP 5.3.0 以降で使用可能です。
FPE_FLTSUB (integer)
PHP 5.3.0 以降で使用可能です。
SEGV_MAPERR (integer)
PHP 5.3.0 以降で使用可能です。
SEGV_ACCERR (integer)
PHP 5.3.0 以降で使用可能です。
BUS_ADRALN (integer)
PHP 5.3.0 以降で使用可能です。
BUS_ADRERR (integer)
PHP 5.3.0 以降で使用可能です。
BUS_OBJERR (integer)
PHP 5.3.0 以降で使用可能です。


add a note add a note User Contributed Notes 定義済み定数
eclecticrob at gmail dot com 04-Jan-2012 03:43
On OS X, the values of the constants are:

SIGHUP = 1
SIGINT = 2
SIGQUIT = 3
SIGILL = 4
SIGTRAP = 5
SIGABRT = 6
SIGIOT = 6
SIGBUS = 10
SIGFPE = 8
SIGUSR1 = 30
SIGSEGV = 11
SIGUSR2 = 31
SIGPIPE = 13
SIGALRM = 14
SIGTERM = 15
SIGSTKFLT not defined
SIGCLD not defined
SIGCHLD = 20
SIGCONT = 19
SIGTSTP = 18
SIGTTIN = 21
SIGTTOU = 22
SIGURG = 16
SIGXCPU = 24
SIGXFSZ = 25
SIGVTALRM = 26
SIGPROF = 27
SIGWINCH = 28
SIGPOLL not defined
SIGIO = 23
SIGPWR not defined
SIGSYS = 12
SIGBABY = 12
SIG_BLOCK = 1
SIG_UNBLOCK = 2
SIG_SETMASK = 3

 
show source | credits | stats | sitemap | contact | advertising | mirror sites