php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #7554 Exclusive flock() breaks client/server communication
Submitted: 2000-10-31 14:50 UTC Modified: 2000-11-01 07:54 UTC
From: php at develnet dot org Assigned:
Status: Closed Package: Filesystem function related
PHP Version: 4.0.3pl1 OS: RedHat 6.2
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please !
Your email address:
MUST BE VALID
Solve the problem:
45 - 32 = ?
Subscribe to this entry?

 
 [2000-10-31 14:50 UTC] php at develnet dot org
A 2nd exclusive flock() - or a try to do so - causes a kind of infinite loop. Browser(s) are not responding. The Apache-process is allowed to write to /tmp.


    $fp1 = fopen("/tmp/test.txt","a");
    if (!$fp1)          die("cant open file 1");
    if (!flock($fp1,2)) die("cant lock file 1");
    
    $fp2 = fopen("/tmp/test.txt","a");
    if (!$fp2)          die("cant open file 2");

    // causes troubles
    if (!flock($fp2,2)) die("cant lock file 2");
    
    fclose($fp2);
    fclose($fp1)


My configure:

'./configure' '--with-apxs=/usr/local/httpd/bin/apxs' '--with-config-file-path=/usr/local/httpd/conf' '--enable-track-vars' '--with-gdbm' '--enable-ftp' '--with-gd' '--with-ttf=/usr/include/freetype' '--enable-sysvshm' '--enable-sysvsem' '--with-openssl=../openssl-0.9.5a' '--with-imap=../imap-4.7c' '--with-pdflib' '--enable-sockets' '--with-mysql=/usr/local/mysql' '--with-oci8=/opt/oracle/product/8.1.5' '--with-sablot'

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2000-11-01 07:54 UTC] stas@php.net
closed on user request
 [2022-03-26 05:05 UTC] giw42161 at uooos dot com
(https://centurylawfirm.in/)gist.github.com

Best lawyer in India
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Apr 19 11:01:28 2024 UTC