We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ddcc0b1 commit 75e2bf9Copy full SHA for 75e2bf9
netio.h
@@ -69,6 +69,10 @@ typedef struct netio_handler_list netio_handler_list_type;
69
70
struct netio
71
{
72
+ region_type *region;
73
+ netio_handler_list_type *handlers;
74
+ netio_handler_list_type *deallocated;
75
+
76
/*
77
* Cached value of the current time. The cached value is
78
* cleared at the start of netio_dispatch to calculate the
@@ -80,11 +84,6 @@ struct netio
80
84
*/
81
85
int have_current_time;
82
86
struct timespec cached_current_time;
83
-
- /* Private. */
- region_type *region;
- netio_handler_list_type *handlers;
87
- netio_handler_list_type *deallocated;
88
};
89
90
typedef void (*netio_event_handler_type)(netio_type *netio,
0 commit comments