mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
ng_pktbuf: provide more detailed information in packet buffer stats
This commit is contained in:
parent
b7bf949484
commit
3a47459ca0
@ -21,6 +21,7 @@
|
|||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
|
#include "od.h"
|
||||||
#include "net/ng_pktbuf.h"
|
#include "net/ng_pktbuf.h"
|
||||||
#include "_pktbuf_internal.h"
|
#include "_pktbuf_internal.h"
|
||||||
|
|
||||||
@ -282,8 +283,17 @@ bool _pktbuf_internal_contains(const void *ptr)
|
|||||||
#ifdef DEVELHELP
|
#ifdef DEVELHELP
|
||||||
void _pktbuf_internal_stats(void)
|
void _pktbuf_internal_stats(void)
|
||||||
{
|
{
|
||||||
printf("Static packet buffer\n");
|
_used_t *ptr = _head();
|
||||||
printf(" * Maximum number of reserved bytes: %u\n", _pktbuf_max_bytes);
|
|
||||||
|
printf("== Static packet buffer ==\n");
|
||||||
|
printf("--- Maximum number of reserved bytes: %u ---\n", _pktbuf_max_bytes);
|
||||||
|
while (ptr) {
|
||||||
|
printf("**** %p: next: %p, size: %" PRIu16 ", pkts: %" PRIu8 " ****\n",
|
||||||
|
(void *)ptr, (void *)ptr->next, ptr->size, ptr->pkts);
|
||||||
|
od_hex_dump(_data(ptr), ptr->size, OD_WIDTH_DEFAULT);
|
||||||
|
puts("");
|
||||||
|
ptr = ptr->next;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user