| 1552 | |
| 1553 | #define UNUSED(x) (void)(x) |
| 1554 | static void ql_info(quicklist *ql) { |
| 1555 | #if QL_TEST_VERBOSE |
| 1556 | printf("Container length: %lu\n", ql->len); |
| 1557 | printf("Container size: %lu\n", ql->count); |
| 1558 | if (ql->head) |
| 1559 | printf("\t(zsize head: %d)\n", ziplistLen(ql->head->zl)); |
| 1560 | if (ql->tail) |
| 1561 | printf("\t(zsize tail: %d)\n", ziplistLen(ql->tail->zl)); |
| 1562 | printf("\n"); |
| 1563 | #else |
| 1564 | UNUSED(ql); |
| 1565 | #endif |
| 1566 | } |
| 1567 | |
| 1568 | /* Return the UNIX time in microseconds */ |
| 1569 | static long long ustime(void) { |
no test coverage detected