public inbox for cygwin@cygwin.com
 help / color / mirror / Atom feed
From: "L. A. Walsh" <cygwin@tlinx.org>
To: cygwin@cygwin.com
Subject: Re: rename() cannot replace the file which is opened with writable access
Date: Thu, 12 Jan 2017 19:06:00 -0000	[thread overview]
Message-ID: <5877D3CC.4030500@tlinx.org> (raw)
In-Reply-To: <20170112.090746.2056666314950620331.trueroad@trueroad.jp>

Masamichi Hosoda wrote:
> Hello,
>
> I've found that rename() cannot replace the file
> which is opened with writable access on Cygwin.
> On Linux, it works.
>
> If I understand correctly, it should work under POSIX.
>
> Here's sample code for reproduce.
---
> #define OLDPATH "oldpath"
> #define NEWPATH "newpath"
>
> int main () {
>   int fd;
>   struct flock fl;
>   char buff[] = "test";
>   fd = open (OLDPATH, O_CREAT | O_RDWR | O_TRUNC, 0666);
>   close (fd);
>   fd = open (NEWPATH, O_CREAT | O_RDWR | O_TRUNC, 0666);
>   if (rename (OLDPATH, NEWPATH) < 0)  perror ("rename");
>   
----
    What are you trying to do by renaming the oldfile
over the top of a still-open-for-write, "newfile".

    Why rename over the top of another file?  What are you trying
to do?  Maybe there is a better way to do it?  ;-). 

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

  parent reply	other threads:[~2017-01-12 19:06 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-01-12  0:07 Masamichi Hosoda
2017-01-12  5:50 ` Andrey Repin
2017-01-12 14:41   ` Masamichi Hosoda
2017-01-12 15:30     ` Nellis, Kenneth (Conduent)
2017-01-12 15:36       ` Corinna Vinschen
2017-01-12 16:38         ` cyg Simple
2017-01-12 19:06 ` L. A. Walsh [this message]
2017-01-12 21:49 ` Corinna Vinschen
2017-01-14  4:00   ` Masamichi Hosoda
2017-01-14 15:38     ` Corinna Vinschen

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=5877D3CC.4030500@tlinx.org \
    --to=cygwin@tlinx.org \
    --cc=cygwin@cygwin.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).