php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #74990 pcntl_fork do not exit
Submitted: 2017-07-26 03:34 UTC Modified: 2017-07-26 10:23 UTC
From: xltxlm at qq dot com Assigned:
Status: Not a bug Package: PCNTL related
PHP Version: 7.1.7 OS: Debian GNU/Linux 8 on docker
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: xltxlm at qq dot com
New email:
PHP Version: OS:

 

 [2017-07-26 03:34 UTC] xltxlm at qq dot com
Description:
------------
the test code run ok less than php 7.1.6 .

error on php 7.1.7

Test script:
---------------
$i = 0;
while ($i++ < 3) {
    $pid = pcntl_fork(); //创建子进程
    if ($pid == 0) {
        echo "$i.";
        sleep(1);
        exit;
    }
    pcntl_wait($status);
}

Expected result:
----------------
1.2.3.

Actual result:
--------------
1.

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2017-07-26 05:12 UTC] xltxlm at qq dot com
i'm sorry. it is not php 7.1.7's error.

it error because  grpc.so .
 [2017-07-26 10:23 UTC] laruence@php.net
-Status: Open +Status: Not a bug
 [2017-07-26 10:23 UTC] laruence@php.net
close as comment
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sat Dec 21 12:01:31 2024 UTC