ILIAS
release_5-2 Revision v5.2.25-18-g3f80b828510
◀ ilDoc Overview
NonStopableProcess.php
Go to the documentation of this file.
1
<?
php
2
3
/*
4
* This file is part of the Symfony package.
5
*
6
* (c) Fabien Potencier <fabien@symfony.com>
7
*
8
* For the full copyright and license information, please view the LICENSE
9
* file that was distributed with this source code.
10
*/
11
19
function
handleSignal
($signal)
20
{
21
switch
($signal) {
22
case
SIGTERM:
23
$name =
'SIGTERM'
;
24
break
;
25
case
SIGINT:
26
$name =
'SIGINT'
;
27
break
;
28
default
:
29
$name = $signal.
' (unknown)'
;
30
break
;
31
}
32
33
echo
"signal $name\n"
;
34
}
35
36
pcntl_signal(SIGTERM,
'handleSignal'
);
37
pcntl_signal(SIGINT,
'handleSignal'
);
38
39
echo
'received '
;
40
41
$duration
= isset(
$argv
[1]) ? (int)
$argv
[1] : 3;
42
$start
= microtime(
true
);
43
44
while
(
$duration
> (microtime(
true
) -
$start
)) {
45
usleep(10000);
46
pcntl_signal_dispatch();
47
}
$start
$start
Definition:
NonStopableProcess.php:42
$argv
$argv
Definition:
rename-config.php:17
$duration
$duration
Definition:
NonStopableProcess.php:41
echo
handleSignal
handleSignal($signal)
Definition:
NonStopableProcess.php:19
php
libs
composer
vendor
symfony
process
Tests
NonStopableProcess.php
Generated on Fri Jan 24 2025 19:00:53 for ILIAS by
1.8.13 (using
Doxyfile
)