php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #61008 not enough shared memory left
Submitted: 2012-02-08 10:32 UTC Modified: 2021-08-01 04:22 UTC
Votes:12
Avg. Score:4.0 ± 0.9
Reproduced:10 of 10 (100.0%)
Same Version:4 (40.0%)
Same OS:0 (0.0%)
From: shenkong at qq dot com Assigned: cmb (profile)
Status: No Feedback Package: Semaphore related
PHP Version: 5.3.10 OS: CentOS 6.0
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 this is not your bug, you can add a comment by following this link.
If this is your bug, but you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: shenkong at qq dot com
New email:
PHP Version: OS:

 

 [2012-02-08 10:32 UTC] shenkong at qq dot com
Description:
------------
i run the code below in the cmd, it tooks warning Warning: shm_put_var(): not 
enough shared memory left in 
/usr/local/agent/bin/a.php on line 15
i set the shmmax > 100M
when the process > 1 ,the error shows
when the process = 1, it seems ok.

Test script:
---------------
#!/usr/local/services/php/bin/php
<?php
// Example
$key = ftok(__FILE__, 'a');
$shm = shm_attach($key);
shm_remove($shm);
$shm = shm_attach($key);
for($i = 0; $i < 3; $i++) {
    $pid = pcntl_fork();
    if ($pid) {
        
    } else {
        //child
        $pid = posix_getpid();
        for($i = 0; $i < 100000; $i++) {
            shm_put_var($shm, $pid, microtime(true));
        }
        exit;
    }
}
?> 

Actual result:
--------------
Warning: shm_put_var(): not enough shared memory left in 
/usr/local/agent/bin/a.php on line 15


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2021-07-19 11:02 UTC] cmb@php.net
-Status: Open +Status: Feedback -Assigned To: +Assigned To: cmb
 [2021-07-19 11:02 UTC] cmb@php.net
Is this still an issue with any of the actively supported PHP
versions[1]?

[1] <https://www.php.net/supported-versions.php>
 [2021-08-01 04:22 UTC] php-bugs at lists dot php dot net
No feedback was provided. The bug is being suspended because
we assume that you are no longer experiencing the problem.
If this is not the case and you are able to provide the
information that was requested earlier, please do so and
change the status of the bug back to "Re-Opened". Thank you.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Tue Mar 19 03:01:29 2024 UTC