summaryrefslogtreecommitdiffstats
path: root/app/report.c
blob: 8d2f342cc30c12c83fe7c07c3ae37246f56853e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "project.h"


void report_time (const char *src, EPOCH e, uint64_t abs, const char *info)
{
#ifdef CHATTY_REPORT
  printf ("RT %s %08x%08x %08x%08x %s\r\n",
          src,
          (unsigned) (abs >> 32),
          (unsigned) (abs & 0xffffffff),
          (unsigned) (e.s >> 32),
          (unsigned) (e.s & 0xffffffff),
          info);
#endif
}