search for: wsaewouldblock

Displaying 10 results from an estimated 10 matches for "wsaewouldblock".

2015 Mar 11
2
Notes on building a gcc toolchain for Rtools (but not multilib)
...asy to fix. In case anyone else finds this thread, here's the problem: The regular Windows internet code (not internet2) used the Winsock interface. It returns different error codes than the Unix sockets interface. Some error codes are ignorable (EWOULDBLOCK and EINPROGRESS); these are WSAEWOULDBLOCK and WSAEINPROGRESS in Winsock. We had code like #ifndef EWOULDBLOCK # define EWOULDBLOCK WSAEWOULDBLOCK #endif so our code could work with the Unix macro names. However, the new toolchain defines both EWOULDBLOCK and WSAEWOULDBLOCK, so the remapping never happened, and we didn'...
2015 Mar 11
0
Notes on building a gcc toolchain for Rtools (but not multilib)
...e > else finds this thread, here's the problem: > > The regular Windows internet code (not internet2) used the Winsock > interface. It returns different error codes than the Unix sockets > interface. Some error codes are ignorable (EWOULDBLOCK and > EINPROGRESS); these are WSAEWOULDBLOCK and WSAEINPROGRESS in Winsock. > We had code like > > #ifndef EWOULDBLOCK > # define EWOULDBLOCK WSAEWOULDBLOCK > #endif > > so our code could work with the Unix macro names. However, the new > toolchain defines both EWOULDBLOCK > and WSAEWOULDBLOCK, so the...
2015 Mar 11
2
Notes on building a gcc toolchain for Rtools (but not multilib)
...hread, here's the problem: > > > > The regular Windows internet code (not internet2) used the Winsock > > interface. It returns different error codes than the Unix sockets > > interface. Some error codes are ignorable (EWOULDBLOCK and > > EINPROGRESS); these are WSAEWOULDBLOCK and WSAEINPROGRESS in Winsock. > > We had code like > > > > #ifndef EWOULDBLOCK > > # define EWOULDBLOCK WSAEWOULDBLOCK > > #endif > > > > so our code could work with the Unix macro names. However, the new > > toolchain defines both EWOUL...
2015 Mar 10
3
Notes on building a gcc toolchain for Rtools (but not multilib)
----- Original Message ----- > From: "Duncan Murdoch" <murdoch.duncan at gmail.com> > To: "Dan Tenenbaum" <dtenenba at fredhutch.org> > Cc: "Hsiu-Khuern Tang" <tangoh at gmail.com>, r-devel at r-project.org > Sent: Tuesday, March 10, 2015 11:37:12 AM > Subject: Re: [Rd] Notes on building a gcc toolchain for Rtools (but not multilib)
2007 Sep 14
1
[Bug 1288] ssh-add on Cygwin -- can't access ssh-agent socket
...Settings/ueltschit/.ssh/id_dsa"' socket (704) created [family=AF_INET, type=SOCK_STREAM, protocol=IPPROTO_IP, dwFlags=WSA_FLAG_OVERLAPPED] socket (704) enabled its nonblocking mode socket (704) connecting synchronously without blocking [name=127.0.0.1:2436] socket (704) could not connect - WSAEWOULDBLOCK (A non-blocking socket operation could not be completed immediately) socket (676) created [family=AF_INET, type=SOCK_DGRAM, protocol=IPPROTO_UDP, dwFlags=WSA_FLAG_OVERLAPPED] socket (676) bound [name=127.0.0.1] socket (676) determined its local name [name=127.0.0.1:2442] socket (676) sending a data...
2017 Mar 17
0
Wine release 2.4
...he shell folder creation fails in order to avoid a compiler warning. shell32/tests: Ignore the compressed attribute. krnl386.exe16: Fix mask values. Jacek Caban (15): ntdll: Don't modify LockCount in RtlLeaveCriticalSection if section is not acquired. wininet: Propagate WSAEWOULDBLOCK result from content decoding reads. wininet: Pass blocking mode to HTTPREQ_Read. wininet: Propagate WSAEWOULDBLOCK from read_http_stream. wininet: Rewrite asynchronous read to try to fill whole buffer and not buffer additional data unless requested. wininet: Rewrite Internet...
2008 Sep 30
1
Problem compiling tinc-1.0.8 on gcc-2.95
...gt;cfg) { ifdebug(CONNECTIONS) logger(LOG_ERR, _("Could not set up a meta connection to %s"), c->name); - c->status.remove = true; + c->status.st.remove = true; retry_outgoing(c->outgoing); return; } @@ -339,7 +339,7 @@ || WSAGetLastError() == WSAEWOULDBLOCK #endif ) { - c->status.connecting = true; + c->status.st.connecting = true; return; } diff -ubr tinc-1.0.8/src/node.h tinc-1.0.8.my/src/node.h --- tinc-1.0.8/src/node.h Sat Nov 11 15:43:07 2006 +++ tinc-1.0.8.my/src/node.h Thu Sep 25 11:56:40 2008 @@ -29,8 +29,7 @@ #include...
2015 Oct 02
0
Wine release 1.7.52
...r IWinHttpRequest_Invoke. Erich Hoover (4): wineps.drv: Add support for PostScript Format 1 glyph names. wineps.drv: Add support for PostScript Format 2 standard glyph names. wineps.drv: Add support for PostScript Format 2 custom glyph names. server: Return STATUS_CANT_WAIT/WSAEWOULDBLOCK for non-overlapped SIO_ADDRESS_LIST_CHANGE requests on non-blocking sockets. Florian Pelz (1): po: German translation: Various fixes. Gerald Pfeifer (9): server: Replace 1 << 31 by 1u << 31 to avoid shift overflow in in get_active_hooks. propsys: Cast to ULONGLONG in...
2020 Aug 18
15
[PATCH nbdkit 0/9] Port to Windows.
Also available here: https://github.com/rwmjones/nbdkit/tree/2020-windows-mingw This is the port to Windows using native Windows APIs (not MSYS or Cygwin). This patch series is at the point where it basically now works. I can run the server with the memory plugin, and access it remotely using guestfish, creating filesystems and so on without any apparent problems. Nevertheless there are many
2020 Aug 20
15
[PATCH nbdkit 0/13] Port to Windows without using a separate library.
Also available here: https://github.com/rwmjones/nbdkit/tree/2020-windows-mingw-nolib After a lot of work I have made the port to Windows work without using a separate library. Instead, on Windows only, we build an "import library" (library of stubs) which resolves references to nbdkit_* functions in the main program and fixes up the plugin, basically the first technique outlined in