1
0
mirror of git://projects.qi-hardware.com/ben-wpan.git synced 2025-04-21 12:27:27 +03:00

perdump: print relative receive timestamp

- perdump.h (struct result_ops), perdump.c (analyze, pcap_record): pass
  receive timestamp to reporter
- per-text.c (t_line, flush, text_undecided, text_packet): print relative
  receive timestamp before each packet
This commit is contained in:
Werner Almesberger
2011-01-19 19:34:16 -03:00
parent 6002759464
commit 6282c334bc
3 changed files with 18 additions and 10 deletions

View File

@@ -16,8 +16,8 @@
struct result_ops {
void (*begin)(void);
void (*undecided)(int symbols);
void (*packet)(int symbols, int skip);
void (*undecided)(int symbols, double t);
void (*packet)(int symbols, int skip, double t);
void (*error)(int symbol);
void (*finish)(void);
};