Disable sendq debugging.
This commit is contained in:
parent
1d2d4e74f6
commit
7f24238ab5
10
src/hubio.c
10
src/hubio.c
@ -152,6 +152,9 @@ int hub_sendq_send(struct hub_sendq* q, hub_recvq_write w, void* data)
|
|||||||
|
|
||||||
return bytes_sent;
|
return bytes_sent;
|
||||||
#else
|
#else
|
||||||
|
|
||||||
|
/* <======.....><.......><.......> */
|
||||||
|
|
||||||
int ret = 0;
|
int ret = 0;
|
||||||
size_t sent = 0;
|
size_t sent = 0;
|
||||||
size_t bytes = 0;
|
size_t bytes = 0;
|
||||||
@ -178,8 +181,9 @@ int hub_sendq_send(struct hub_sendq* q, hub_recvq_write w, void* data)
|
|||||||
}
|
}
|
||||||
|
|
||||||
msg = list_get_first(q->queue);
|
msg = list_get_first(q->queue);
|
||||||
|
#ifdef DEBUG_SENDQ
|
||||||
printf("Queued up bytes: %d, in %d msgs (first=%d/%d)\n", (int) bytes, (int) msgs, (int) q->offset, (msg ? (int) msg->length : 0));
|
printf("Queued up bytes: %d, in %d msgs (first=%d/%d)\n", (int) bytes, (int) msgs, (int) q->offset, (msg ? (int) msg->length : 0));
|
||||||
|
#endif
|
||||||
/* Send as much as possible */
|
/* Send as much as possible */
|
||||||
ret = w(data, sbuf, bytes);
|
ret = w(data, sbuf, bytes);
|
||||||
|
|
||||||
@ -195,9 +199,9 @@ int hub_sendq_send(struct hub_sendq* q, hub_recvq_write w, void* data)
|
|||||||
|
|
||||||
if (sent >= bytes)
|
if (sent >= bytes)
|
||||||
break;
|
break;
|
||||||
|
#ifdef DEBUG_SENDQ
|
||||||
printf("removing msg %d [%p]\n", (int) msgs, msg);
|
printf("removing msg %d [%p]\n", (int) msgs, msg);
|
||||||
|
#endif
|
||||||
hub_sendq_remove(q, msg);
|
hub_sendq_remove(q, msg);
|
||||||
msgs--;
|
msgs--;
|
||||||
msg = list_get_next(q->queue);
|
msg = list_get_next(q->queue);
|
||||||
|
@ -23,7 +23,7 @@
|
|||||||
/* FIXME: This should not be needed! */
|
/* FIXME: This should not be needed! */
|
||||||
extern struct hub_info* g_hub;
|
extern struct hub_info* g_hub;
|
||||||
|
|
||||||
#define DEBUG_SENDQ 1
|
/* #define DEBUG_SENDQ 1 */
|
||||||
|
|
||||||
int net_user_send(void* ptr, const void* buf, size_t len)
|
int net_user_send(void* ptr, const void* buf, size_t len)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user