Small comment update 2

pull/1557/head
Dmitry K 2023-03-19 03:25:52 +03:00 committed by Jack Christensen
parent 1298a835bc
commit c3d62c8783
1 changed files with 1 additions and 3 deletions

View File

@ -132,7 +132,7 @@ func (c *NetConn) SetBlockingMode(blocking bool) error {
}
if blocking {
// No ready to exit from non-blocking mode, there are pending non-blocking operations
// Not ready to exit from non-blocking mode, there are pending non-blocking operations
if atomic.AddInt32(&c.nbOperCnt, -1) > 0 {
return nil
}
@ -141,8 +141,6 @@ func (c *NetConn) SetBlockingMode(blocking bool) error {
if atomic.AddInt32(&c.nbOperCnt, 1) > 1 {
return nil
}
//fmt.Println("socket reverting to blocking mode")
}
mode := sockModeNonBlocking