1
0
mirror of https://github.com/php/php-src.git synced 2026-04-24 08:28:26 +02:00

Need the PCNTL extension loaded since that is where the SIGKILL constant comes from

This commit is contained in:
Rasmus Lerdorf
2009-11-23 21:24:20 +00:00
parent 80314eb721
commit 36c285e9eb
@@ -7,6 +7,7 @@ Francesco Fullone ff@ideato.it
--SKIPIF--
<?php
if(!extension_loaded("posix")) print "skip - POSIX extension not loaded";
if(!extension_loaded("pcntl")) print "skip - PCNTL extension required";
?>
--FILE--
<?php