Is Winsock thread-safe?

On modern Windows stacks, yes, it is, within limits.

It is safe, for instance, to have one thread calling send() and another thread calling recv() on a single socket.

By contrast, it’s a bad idea for two threads to both be calling send() on a single socket. This is “thread-safe” in the limited sense that your program shouldn’t crash, and you certainly shouldn’t be able to crash the kernel, which is handling these send() calls. The fact that it is “safe” doesn’t answer key questions about the actual effect of doing this. Which call’s data goes out first on the connection? Does it get interleaved somehow? Don’t do this.

Instead of multiple threads accessing a single socket, you may want to consider setting up a pair of network I/O queues. Then, give one thread sole ownership of the socket: this thread sends data from one I/O queue and enqueues received data on the other. Then other threads can access the queues (with suitable synchronization).

Applications that use some kind of non-synchronous socket typically have some I/O queue already. Of particular interest in this case is overlapped I/O or I/O completion ports, because these I/O strategies are also thread-friendly. You can tell Winsock about several OVERLAPPED blocks, and Winsock will finish sending one before it moves on to the next. This means you can keep a chain of these OVERLAPPED blocks, each perhaps added to the chain by a different thread. Each thread can also call WSASend() on the block they added, making your main loop simpler.

--------------------------------------------------------------------------------------------------------------------------------------

Atomicity of sendmsg() family of functions

SystemAtomicity
AIX 5.2Yes
FreeBSD 6.1No
HP-UX B.11.23No
IRIX 6.5.27No
Linux 2.6.xNo
Mac OS X 10.4 TigerNo
Solaris 10Yes
Windows 2000/XPYes, but with caveats

http://www.almaden.ibm.com/cs/people/marksmith/sendmsg.html

http://tangentsoft.net/wskfaq/intermediate.html#threadsafety 

posted @ 2010-09-07 03:32  史莱姆  阅读(439)  评论(0编辑  收藏  举报