From 17ea46d25935797c5b67ace2afb38da637614b60 Mon Sep 17 00:00:00 2001 From: Ben Noordhuis Date: Fri, 28 Sep 2012 06:18:21 +0200 Subject: [PATCH] include: remove uv_counters_t, missed in 837edf4 --- include/uv.h | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/include/uv.h b/include/uv.h index 2fc429ac..dfc61cb0 100644 --- a/include/uv.h +++ b/include/uv.h @@ -212,7 +212,6 @@ typedef struct uv_fs_s uv_fs_t; typedef struct uv_work_s uv_work_t; /* None of the above. */ -typedef struct uv_counters_s uv_counters_t; typedef struct uv_cpu_info_s uv_cpu_info_t; typedef struct uv_interface_address_s uv_interface_address_t; @@ -1843,27 +1842,6 @@ union uv_any_req { }; -struct uv_counters_s { - uint64_t async_init; - uint64_t check_init; - uint64_t eio_init; - uint64_t fs_event_init; - uint64_t fs_poll_init; - uint64_t handle_init; - uint64_t idle_init; - uint64_t pipe_init; - uint64_t poll_init; - uint64_t prepare_init; - uint64_t process_init; - uint64_t req_init; - uint64_t stream_init; - uint64_t tcp_init; - uint64_t timer_init; - uint64_t tty_init; - uint64_t udp_init; -}; - - struct uv_loop_s { /* User data - use this for whatever. */ void* data;