X-Recipient: archive-cygwin@delorie.com
X-SWARE-Spam-Status: No, hits=-2.4 required=5.0 	tests=AWL,BAYES_00,SPF_PASS
X-Spam-Check-By: sourceware.org
Message-ID: <49C3E438.4070301@gmail.com>
Date: Fri, 20 Mar 2009 18:45:12 +0000
From: Dave Korn <dave.korn.cygwin@googlemail.com>
User-Agent: Thunderbird 2.0.0.17 (Windows/20080914)
MIME-Version: 1.0
To: cygwin@cygwin.com
Subject: Re: UNLINK problem (again!!)
References: <49C3BF14.5000602@bull.net>
In-Reply-To: <49C3BF14.5000602@bull.net>
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Mailing-List: contact cygwin-help@cygwin.com; run by ezmlm
List-Id: <cygwin.cygwin.com>
List-Subscribe: <mailto:cygwin-subscribe@cygwin.com>
List-Archive: <http://sourceware.org/ml/cygwin/>
List-Post: <mailto:cygwin@cygwin.com>
List-Help: <mailto:cygwin-help@cygwin.com>, <http://sourceware.org/ml/#faqs>
Sender: cygwin-owner@cygwin.com
Mail-Followup-To: cygwin@cygwin.com
Delivered-To: mailing list cygwin@cygwin.com

Martine Carannante wrote:

> $ ./testop
> Create file
> unlink file
> Create Again the file
> Error Create: : Permission denied

>        printf("Create file\n");
>        if((fp=fopen("toto","a+"))==NULL) {
>                perror("Error Create: ");
>                exit(255);
>        }
>        printf("unlink file\n");
>        ret=unlink("toto");
>        if (ret != 0) {
>                perror("Error Unlink: ");
>                exit(255);
>        }
>        printf("Create Again the file\n");
>        if((fp=fopen("toto","a+"))==NULL) {


  You didn't close the first filehandle.

  This is Cygwin correctly implementing the POSIX "can delete a file while
retaining a handle to its contents" semantic, followed by the known Cygwin
problem (a restiction of the underlying windows OS) that you can't (as you can
in POSIX) create a new file in place of the old one while you keep that handle
to the old one's contents.

  If you add an "fclose (fp)" before the unlink, or after the unlink but
before the second attempt to open, it works.

    cheers,
      DaveK

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

