Re: Win32 and fsync() - Mailing list pgsql-hackers

From Gavin Sherry
Subject Re: Win32 and fsync()
Date
Msg-id Pine.LNX.4.21.0302041028150.30161-100000@linuxworld.com.au
Whole thread Raw
In response to Re: Win32 and fsync()  ("Dann Corbit" <DCorbit@connx.com>)
List pgsql-hackers
On Mon, 3 Feb 2003, Dann Corbit wrote:

> > -----Original Message-----
> > From: Merlin Moncure [mailto:merlin.moncure@rcsonline.com] 
> > Sent: Monday, February 03, 2003 3:00 PM
> > To: Andrew Dunstan
> > Cc: pgsql-hackers@postgresql.org
> > Subject: Re: [HACKERS] Win32 and fsync()
> > 
> > 
> > >I'm having difficulty digging up the reference, but I think I recall
> > seeing >something that said, roughly, on W32 there are 2 sets 
> > of buffers
> > - those in >the user level library and those in the kernel 
> > level driver, and >FlushFileBuffers drains the first, while 
> > _commit drains both (it includes a >call to FlushFileBuffers).
> > 
> > You were correct: here is the source.
> > 
> > 
> > int __cdecl _commit (
> >         int filedes
> >         )
> > {
> >         int retval;
> > 
> >         /* if filedes out of range, complain */
> >         if ( ((unsigned)filedes >= (unsigned)_nhandle) ||
> >              !(_osfile(filedes) & FOPEN) )
> >         {
> >                 errno = EBADF;
> >                 return (-1);
> >         }
> > 
> >         _lock_fh(filedes);
> > 
> >         /* if filedes open, try to commit, else fall through to bad */
> >         if (_osfile(filedes) & FOPEN) {
> > 
> >                 if ( 
> > !FlushFileBuffers((HANDLE)_get_osfhandle(filedes))
> > ) {
> >                         retval = GetLastError();
> >                 } else {
> >                         retval = 0;     /* return success */
> >                 }
> > 
> >                 /* map the OS return code to C errno value 
> > and return code */
> >                 if (retval == 0) {
> >                         goto good;
> >                 } else {
> >                         _doserrno = retval;
> >                         goto bad;
> >                 }
> > 
> >         }
> > 
> > bad :
> >         errno = EBADF;
> >         retval = -1;
> > good :
> >         _unlock_fh(filedes);
> >         return (retval);
> > }
> 
> Where is the "other" flush besides FlushFileBuffers()?

The only real code there is, it seems, an exclusive look on the file
descriptor. (Provided of course that that is what _lock_fh(filedes) does).

Gavin




pgsql-hackers by date:

Previous
From: "Dann Corbit"
Date:
Subject: Re: Win32 and fsync()
Next
From: "Andrew Dunstan"
Date:
Subject: Re: Win32 and fsync()