From professional translators, enterprises, web pages and freely available translation repositories.
sigterm
& ÐавеÑÑиÑÑ Ð¿ÑоÑеÑÑ
Last Update: 2011-10-23
Usage Frequency: 1
Quality:
Warning: Contains invisible HTML formatting
send sigterm
Послать сигнал sigterm
Last Update: 2011-10-23
Usage Frequency: 1
Quality:
os.kill(pid, sigterm)
os.kill(pid, sigterm)
Last Update: 2018-02-21
Usage Frequency: 1
Quality:
the default is 15 (sigterm).
Значение по умолчанию — 15 (sigterm).
Last Update: 2011-10-23
Usage Frequency: 1
Quality:
sigterm signal ("termination (ansi)")
Сигнал sigterm ("Завершение (ansi)")
Last Update: 2011-10-23
Usage Frequency: 1
Quality:
Warning: Contains invisible HTML formatting
sigterm - kill (gracefully sends shutdown signal to process)
sigterm - kill (мягкий сигнал завершения процесса)
Last Update: 2022-02-17
Usage Frequency: 1
Quality:
the communigate pro server can be shut down by sending it a sigterm or a sigint signal.
Сервер communigate pro может быть остановлен посылкой команды sigterm или сигнала sigint.
Last Update: 2018-02-21
Usage Frequency: 1
Quality:
[09/sep/2013:14:43:21] engine listening for sigterm.
2011-nov-28 02:35:43: [i] -reginstall:
Last Update: 2018-02-21
Usage Frequency: 1
Quality:
?php declare( ticks=1); $pid = pcntl_fork(); if ($pid == -1) {die("could not fork");} else if ($pid) {exit(); / / we are the parent} else {/ / we are the child} / / detatch from the controlling terminal if (!posix_setsid()) {die("could not detach from terminal");} / / setup signal handlers pcntl_signal(sigterm, "sig_handler"); pcntl_signal(sighup, "sig_handler"); / / loop forever performing tasks while(1) {/ / do something interesting here} function sig_handler($signo) {switch($signo) {case sigterm: / / handle shutdown tasks exit; break; case sighup: / / handle restart tasks break; default: / / handle all other signals}}?
Смотрите также
Last Update: 2011-10-24
Usage Frequency: 1
Quality:
Warning: Contains invisible HTML formatting