Compare commits
1 Commits
Author | SHA1 | Date | |
---|---|---|---|
c855f92ecd |
@ -9,7 +9,14 @@ use NoccyLabs\Ipc\Signal\SignalTrap;
|
||||
$trap = new SignalTrap(SIGINT);
|
||||
echo "Press ctrl-c...\n";
|
||||
|
||||
while (!$trap->isTrapped()) {
|
||||
while (!$trap->isTrapped(true)) {
|
||||
usleep(10000);
|
||||
}
|
||||
|
||||
echo "Thanks!\n";
|
||||
echo "And once more...\n";
|
||||
|
||||
while (!$trap(true)) {
|
||||
usleep(10000);
|
||||
}
|
||||
|
||||
|
@ -8,7 +8,7 @@
|
||||
beStrictAboutTestsThatDoNotTestAnything="true"
|
||||
beStrictAboutTodoAnnotatedTests="true"
|
||||
verbose="true">
|
||||
<testsuite>
|
||||
<testsuite name="default">
|
||||
<directory suffix="Test.php">tests</directory>
|
||||
</testsuite>
|
||||
|
||||
|
@ -45,4 +45,9 @@ class SignalTrap
|
||||
return false;
|
||||
}
|
||||
|
||||
public function __invoke($reset=true):bool
|
||||
{
|
||||
return $this->isTrapped($reset);
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user