Benchmarks: add size of uv_poll_t to benchmark-sizes

This commit is contained in:
Bert Belder 2012-04-25 00:23:16 +02:00
parent beaf750700
commit 444ab19be8

View File

@ -36,5 +36,6 @@ BENCHMARK_IMPL(sizes) {
LOGF("uv_async_t: %u bytes\n", (unsigned int) sizeof(uv_async_t));
LOGF("uv_timer_t: %u bytes\n", (unsigned int) sizeof(uv_timer_t));
LOGF("uv_process_t: %u bytes\n", (unsigned int) sizeof(uv_process_t));
LOGF("uv_poll_t: %u bytes\n", (unsigned int) sizeof(uv_poll_t));
return 0;
}