This is the mail archive of the cygwin@cygwin.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Problem with database engine on Cygwin


On Wed, Apr 09, 2003 at 01:49:50PM -0600, dmay at tvi dot edu wrote:
> 
> 	fd = creat (FILENAME, (S_IWRITE|S_IREAD));
> 	if (-1 == fd)	{
> 		printf ("\n\nError creating %s:\n", FILENAME);
> 		perror(0);
> 		return -1;
> 	}
> #ifdef __CYGWIN__
> 	fd = open (FILENAME, (O_RDWR|O_BINARY), (S_IREAD|S_IWRITE));
> #endif
> #ifndef __CYGWIN__
> 	fd = open (FILENAME, O_RDWR, (S_IREAD|S_IWRITE));
> #endif

Isn't the same file opened twice and fd overwritten?

Pierre


--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Bug reporting:         http://cygwin.com/bugs.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]