Re: APC/socket fix (final?)
От | Magnus Hagander |
---|---|
Тема | Re: APC/socket fix (final?) |
Дата | |
Msg-id | 6BCB9D8A16AC4241919521715F4D8BCE34B5DF@algol.sollentuna.se обсуждение исходный текст |
Ответ на | APC/socket fix (final?) (Claudio Natoli <claudio.natoli@memetrics.com>) |
Список | pgsql-patches |
>Claudio Natoli <claudio.natoli@memetrics.com> writes: >> + #ifdef WIN32 >> + /* Interrupted by socket/APC interaction? */ >> + if (n < 0 && GetLastError() == ERROR_IO_PENDING) >> + errno = EINTR; >> + #endif > >This seems a bit schizophrenic; if you can assign to errno, >why can't you >read from it? Would look more consistent if the code looked like > > if (n < 0 && errno == ERROR_IO_PENDING) > errno = EINTR; > The problem is that winsock does not *set* the errno variable in the case when it's interrupted by an APC. errno is left at 0. GetLastError() is the win32 replacement for errno. In most cases errno is set correctly when you use the "unix api functions", but not in this case (which is arguably a bug, but it's there nevertheless). If you use "native win32 functions", you get GetLastError() set only. //Magnus
В списке pgsql-patches по дате отправления: