Changeset 51521 in vbox
- Timestamp:
- Jun 4, 2014 5:20:18 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/lwip/src/api/sockets.c
r51520 r51521 636 636 { 637 637 FD_SET(i, &lreadset); 638 LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_selscan: fd=%d ready for reading\n", i));638 LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_selscan: fd=%d ready for reading\n", i)); 639 639 nready++; 640 640 } … … 647 647 { 648 648 FD_SET(i, &lwriteset); 649 LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_selscan: fd=%d ready for writing\n", i));649 LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_selscan: fd=%d ready for writing\n", i)); 650 650 nready++; 651 651 } … … 715 715 FD_ZERO(exceptset); 716 716 717 LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_select: no timeout, returning 0\n"));718 set_errno(0);717 LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_select: no timeout, returning 0\n")); 718 set_errno(0); 719 719 720 720 return 0; … … 768 768 FD_ZERO(exceptset); 769 769 770 LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_select: timeout expired\n"));771 set_errno(0);770 LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_select: timeout expired\n")); 771 set_errno(0); 772 772 773 773 return 0;
Note:
See TracChangeset
for help on using the changeset viewer.