4

I want to have a reader thread & a writer thread to same TCP socket. Is it ok? Do I need to lock before accessing it ? Platform is Windows 7, CPython 2.7.4

4

1 回答 1

3

对于 Unix 内核,两个线程一个读取和另一个写入文件(套接字)与两个进程执行相同操作相同。由于内核能够复用 IO,因此您无需担心。

于 2013-06-18T13:18:36.383 回答