Re: Win32 testing needed

Поиск
Список
Период
Сортировка
От Andreas Pflug
Тема Re: Win32 testing needed
Дата
Msg-id 4113CD5A.6070200@pse-consulting.de
обсуждение исходный текст
Ответ на Re: Win32 testing needed  (Tom Lane <tgl@sss.pgh.pa.us>)
Ответы Re: Win32 testing needed
Список pgsql-hackers-win32
Tom Lane wrote:
> Andreas Pflug <pgadmin@pse-consulting.de> writes:
>
>>             ereport(LOG,
>>                     (errcode_for_file_access(),
>>-                     errmsg("could not read from logger pipe: %m")));
>>+                     errmsg("could not read from logger pipe: %lu", error)));
>
>
> Does %m actually give a wrong result here?  Because if it does,
> errcode_for_file_access() is wrong too.

Yes, errno is not set. Same issue for CreatePipe; I missed that.

Maybe we should consider examining GetLastError() and FormatMessage()
(the equivalent of strerror, a sample is in the symlink/junction code)
for %m under win32; these will work for standard posix operations also
and might give much more detailed messages in many situations.

Regards,
Andreas

В списке pgsql-hackers-win32 по дате отправления:

Предыдущее
От: Andreas Pflug
Дата:
Сообщение: Re: Win32 testing needed
Следующее
От: Andreas Pflug
Дата:
Сообщение: Re: Win32 testing needed