Re: [PATCHES] MSFT compiler fixes + misc

2004-04-05 Thread Claudio Natoli


> [snip]
> #ifndef WIN32
> #define pgpipe(a)   pipe(a)
> #define piperead(a,b,c) read(a,b,c)
> #define pipewrite(a,b,c)write(a,b,c)
> #else
> extern int pgpipe(int handles[2]);
> extern int piperead(a,b,c);
> extern int pipewrite(a,b,c);
> #endif
> 
> And then put piperead() and pipewrite() along with pgpipe() in the C
> file. (Naturally, arguments with the correct syntax, but you get the
> idea)
> [snip]

Ah, now it is clear what you meant.

You want to submit the patch?

Cheers,
Claudio
 

--- 
Certain disclaimers and policies apply to all email sent from Memetrics.
For the full text of these disclaimers and policies see 
http://www.memetrics.com/emailpolicy.html";>http://www.memetrics.com/em
ailpolicy.html

---(end of broadcast)---
TIP 9: the planner will ignore your desire to choose an index scan if your
  joining column's datatypes do not match


Re: [PATCHES] MSFT compiler fixes + misc

2004-04-05 Thread Magnus Hagander
> > A thought about this - how about converting pgpiperead() and
> > pgpipewrite() into functions intead of macros (on win32 - still 
> > redifining them on != win32), mimicking the behaviour of read() and 
> > write()?
> 
> And #def'ing them to be read + write under win32? Don't want 
> to change every instance of read/write.

No.
#def'ing them to be read + write under non-win32. As is done today.


It would change (in port.h):
#ifndef WIN32
#define pgpipe(a)   pipe(a)
#define piperead(a,b,c) read(a,b,c)
#define pipewrite(a,b,c)write(a,b,c)
#else
extern int pgpipe(int handles[2]);
#define piperead(a,b,c) recv(a,b,c,0)
#define pipewrite(a,b,c)send(a,b,c,0)
#endif

to

#ifndef WIN32
#define pgpipe(a)   pipe(a)
#define piperead(a,b,c) read(a,b,c)
#define pipewrite(a,b,c)write(a,b,c)
#else
extern int pgpipe(int handles[2]);
extern int piperead(a,b,c);
extern int pipewrite(a,b,c);
#endif

And then put piperead() and pipewrite() along with pgpipe() in the C
file. (Naturally, arguments with the correct syntax, but you get the
idea)


> > Then we could do awya with the #ifdefs at the points where 
> its used, 
> > and just expect the normal Unix behaviour?
> 
> I don't see that we do have any #ifdefs where its used.

pgstat.c, inside the main loop.
#ifdef WIN32
if (WSAGetLastError() == WSAECONNRESET) /* EOF on the pipe! (win32
socket based implementation) */
{
pipeEOF = true;
 break;
}
#endif

There's where I notived it. That might be the only place, though -
haven't checked further. If it's the only case, then it's not such a big
deal. 
But it might come back to bite us in the future - since it currently
does not actually implement "expected behaviour" of a pipe.


//Magnus

---(end of broadcast)---
TIP 4: Don't 'kill -9' the postmaster


Re: [PATCHES] MSFT compiler fixes + misc

2004-04-04 Thread Bruce Momjian

Patch applied.  Thanks.

---


Claudio Natoli wrote:
> 
> For application to HEAD, following community review.
> 
> Corrects issues recently posted by Dann Corbit, allowing libpq/psql to be
> built under VC++. Moves a pgstat win32 #def to port.h
> 
> --- 
> Certain disclaimers and policies apply to all email sent from Memetrics.
> For the full text of these disclaimers and policies see 
>  href="http://www.memetrics.com/emailpolicy.html";>http://www.memetrics.com/em
> ailpolicy.html
>   
> 

[ Attachment, skipping... ]

> 
> ---(end of broadcast)---
> TIP 2: you can get off all lists at once with the unregister command
> (send "unregister YourEmailAddressHere" to [EMAIL PROTECTED])

-- 
  Bruce Momjian|  http://candle.pha.pa.us
  [EMAIL PROTECTED]   |  (610) 359-1001
  +  If your life is a hard drive, |  13 Roberts Road
  +  Christ can be your backup.|  Newtown Square, Pennsylvania 19073

---(end of broadcast)---
TIP 5: Have you checked our extensive FAQ?

   http://www.postgresql.org/docs/faqs/FAQ.html


Re: [PATCHES] MSFT compiler fixes + misc

2004-04-04 Thread Claudio Natoli


> A thought about this - how about converting pgpiperead() and
> pgpipewrite() into functions intead of macros (on win32 - still
> redifining them on != win32), mimicking the behaviour of read() and
> write()? 

And #def'ing them to be read + write under win32? Don't want to change every
instance of read/write.


> Then we could do awya with the #ifdefs at the points where its
> used, and just expect the normal Unix behaviour?

I don't see that we do have any #ifdefs where its used.


Can't help but feel I've misinterpreted your message.

Cheers,
Claudio

--- 
Certain disclaimers and policies apply to all email sent from Memetrics.
For the full text of these disclaimers and policies see 
http://www.memetrics.com/emailpolicy.html";>http://www.memetrics.com/em
ailpolicy.html

---(end of broadcast)---
TIP 5: Have you checked our extensive FAQ?

   http://www.postgresql.org/docs/faqs/FAQ.html


Re: [PATCHES] MSFT compiler fixes + misc

2004-04-03 Thread Magnus Hagander
A thought about this - how about converting pgpiperead() and
pgpipewrite() into functions intead of macros (on win32 - still
redifining them on != win32), mimicking the behaviour of read() and
write()? Then we could do awya with the #ifdefs at the points where its
used, and just expect the normal Unix behaviour?

//Magnus


>-Original Message-
>From: Claudio Natoli [mailto:[EMAIL PROTECTED] 
>Sent: den 1 april 2004 05:06
>To: [EMAIL PROTECTED]
>Subject: [PATCHES] MSFT compiler fixes + misc
>
>
>
>For application to HEAD, following community review.
>
>Corrects issues recently posted by Dann Corbit, allowing 
>libpq/psql to be
>built under VC++. Moves a pgstat win32 #def to port.h
>
>--- 
>Certain disclaimers and policies apply to all email sent from 
>Memetrics.
>For the full text of these disclaimers and policies see 
>href="http://www.memetrics.com/emailpolicy.html";>http://www.mem
>etrics.com/em
>ailpolicy.html
>  
>
>

---(end of broadcast)---
TIP 8: explain analyze is your friend


[PATCHES] MSFT compiler fixes + misc

2004-03-31 Thread Claudio Natoli

For application to HEAD, following community review.

Corrects issues recently posted by Dann Corbit, allowing libpq/psql to be
built under VC++. Moves a pgstat win32 #def to port.h

--- 
Certain disclaimers and policies apply to all email sent from Memetrics.
For the full text of these disclaimers and policies see 
http://www.memetrics.com/emailpolicy.html";>http://www.memetrics.com/em
ailpolicy.html
  



mscver.patch
Description: Binary data

---(end of broadcast)---
TIP 2: you can get off all lists at once with the unregister command
(send "unregister YourEmailAddressHere" to [EMAIL PROTECTED])