php 多进程中的信号有关问题
php 多进程中的信号问题
1.以下代码sleep时间远小于20
<?php // 当子进程退出时,会触发该函数function sig_handler($sig) { switch($sig) { case SIGCHLD: echo 'SIGCHLD received'."n"; }} pcntl_signal(SIGCHLD, "sig_handler");// 注册子进程退出时调用的函数$start = time(); $sub_process_cnt = 20;for($i=0;$i<$sub_process_cnt;$i++) { sleep(1); $pid = pcntl_fork(); if ($pid == 0) { exit(-1); }}$status = 0; for ($k=0; $k<$sub_process_cnt; $k++) { pcntl_waitpid(-1, $status );}$end = time();$usage = $end - $start;print "End, use: ".$usage." seconds" ; ?>
3.解决办法:
pcntl_signal(SIGCHLD, SIG_IGN ); //忽略子进程返回信号
全部代码如下
<?php // 当子进程退出时,会触发该函数function sig_handler($sig) { switch($sig) { case SIGCHLD: echo 'SIGCHLD received'."n"; }} pcntl_signal(SIGCHLD, SIG_IGN );// 注册子进程退出时调用的函数$start = time(); $sub_process_cnt = 20;for($i=0;$i<$sub_process_cnt;$i++) { sleep(1); $pid = pcntl_fork(); if ($pid == 0) { exit(-1); }}$status = 0; for ($k=0; $k<$sub_process_cnt; $k++) { pcntl_waitpid(-1, $status );}$end = time();$usage = $end - $start;print "End, use: ".$usage." seconds" ; ?>

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

php提交表单通过后,弹出的对话框怎样在当前页弹出php提交表单通过后,弹出的对话框怎样在当前页弹出而不是在空白页弹出?想实现这样的效果:而不是空白页弹出:------解决方案--------------------如果你的验证用PHP在后端,那么就用Ajax;仅供参考:HTML code

Common errors and solutions for fork failure in PHPPCNTL When using the PHPPCNTL extension for process management, you often encounter the problem of fork failure. Fork is a method of creating a child process. In some cases, the fork operation may fail due to some errors. This article will introduce some common fork failure errors and corresponding solutions, and provide specific code examples to help readers better understand and deal with these problems. 1. Possible error message for insufficient memory: Can

Analysis of the reasons for the failure of the PHPPCNTL extension fork function In PHP, the PCNTL extension provides a series of functions for handling process control, of which the fork function is one of the commonly used functions. Through the fork function, we can create a child process to perform a certain task, which is very useful when writing concurrent handlers. However, when using the PCNTL extended fork function, sometimes you will encounter fork failure. This article will analyze the reasons for this situation and give specific codes.

Note 1. The Process class is an abstract class (all methods are abstract), encapsulating the process (ie, executing the program). 2. The Process class provides methods for inputting input from the process, executing output to the process, waiting for the process to complete, checking the exit status of the process, and destroying the process. Example Processp=null;try{p=Runtime.getRuntime().exec("notepad.exe");p.waitFor();}catch(Exceptione){e.printStackTrace();}System.out.println(" I want to be printed...

Sharing debugging skills for invalid fork function in PHPPCNTL In PHP programming, the PCNTL extension provides some process control functions, such as the fork function, which can be used to create a new process. However, during use, sometimes the fork function fails, causing the child process to fail to be created normally. This article will share some debugging tips to help us solve this problem. First, let's start with a simple example. Let's say we have the following PHP code:

PHPPCNTL is an extension library provided by PHP for handling process control-related functions. When writing PHP multi-process programs, the PCNTL library can help us create sub-processes, communicate between processes, and manage the status of the process. However, when using the PCNTL library, sometimes you encounter a situation where fork failure causes program exceptions. This article will delve into the issue and provide a fix, along with specific code examples. Error phenomenon When using the PHPPCNTL library to create a child process, we

Sorry, I cannot provide an article on how to solve the problem of fork failure in PHPPCNTL. If you have any other questions or need help, please feel free to let me know. Let me know what I can do for you!

不用数据库来实现用户的简单的下载,代码如下,但是却不能下载,请高手找下原因,文件路劲什么的没问题。
