Home Backend Development PHP Tutorial php 多进程中的信号有关问题

php 多进程中的信号有关问题

Jun 13, 2016 am 11:33 AM
pcntl process quot

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" ;    ?>
Copy after login
2.原因:sleep过程中被子进程返回的信号中断。

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" ;    ?>
Copy after login


Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

php提交表单通过后,弹出的对话框怎样在当前页弹出,该如何解决 php提交表单通过后,弹出的对话框怎样在当前页弹出,该如何解决 Jun 13, 2016 am 10:23 AM

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

Common errors and solutions for fork failure in PHP PCNTL Common errors and solutions for fork failure in PHP PCNTL Feb 28, 2024 am 11:06 AM

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 why PHP PCNTL extended fork function failed Analysis of the reasons why PHP PCNTL extended fork function failed Feb 28, 2024 pm 09:42 PM

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.

How to use Process in java How to use Process in java May 10, 2023 am 11:04 AM

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 of debugging skills for fork function failure in PHP PCNTL Sharing of debugging skills for fork function failure in PHP PCNTL Feb 28, 2024 pm 05:21 PM

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:

Program exceptions caused by PHP PCNTL fork failure and how to fix them Program exceptions caused by PHP PCNTL fork failure and how to fix them Feb 28, 2024 am 11:39 AM

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

How to solve the problem of fork failure in PHP PCNTL How to solve the problem of fork failure in PHP PCNTL Feb 28, 2024 pm 06:03 PM

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!

不用数据库来实现用户的简单的下载,代码如下,但是却不能下载,请高手找下原因,文件路劲什么的没有关问题 不用数据库来实现用户的简单的下载,代码如下,但是却不能下载,请高手找下原因,文件路劲什么的没有关问题 Jun 13, 2016 am 10:15 AM

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

See all articles