|
6 | 6 | * Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group |
7 | 7 | * Portions Copyright (c) 1994, Regents of the University of California |
8 | 8 | * |
9 | | - * $PostgreSQL: pgsql/src/include/port.h,v 1.52 2004/08/12 18:32:43 momjian Exp $ |
| 9 | + * $PostgreSQL: pgsql/src/include/port.h,v 1.53 2004/08/17 14:38:38 momjian Exp $ |
10 | 10 | * |
11 | 11 | *------------------------------------------------------------------------- |
12 | 12 | */ |
@@ -124,6 +124,8 @@ extern off_t ftello(FILE *stream); |
124 | 124 | /* |
125 | 125 | *WIN32 doesn't allow descriptors returned by pipe() to be used in select(), |
126 | 126 | *so for that platform we use socket() instead of pipe(). |
| 127 | + *There is some inconsistency here because sometimes we require pg*, like |
| 128 | + *pgpipe, but in other cases we define rename to pgrename just on Win32. |
127 | 129 | */ |
128 | 130 | #ifndefWIN32 |
129 | 131 | #definepgpipe(a)pipe(a) |
|