diff options
Diffstat (limited to 'ctdb/include')
-rw-r--r-- | ctdb/include/ctdb_client.h | 6 | ||||
-rw-r--r-- | ctdb/include/ctdb_private.h | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/ctdb/include/ctdb_client.h b/ctdb/include/ctdb_client.h index e9aa8d17fb1..3029d0fa36a 100644 --- a/ctdb/include/ctdb_client.h +++ b/ctdb/include/ctdb_client.h @@ -52,12 +52,12 @@ struct ctdb_client_notify_deregister { uint64_t srvid; }; -struct event_context; +struct tevent_context; /* initialise ctdb subsystem */ -struct ctdb_context *ctdb_init(struct event_context *ev); +struct ctdb_context *ctdb_init(struct tevent_context *ev); /* choose the transport @@ -193,7 +193,7 @@ int ctdb_register_message_handler(struct ctdb_context *ctdb, struct ctdb_db_context *find_ctdb_db(struct ctdb_context *ctdb, uint32_t id); -struct ctdb_context *ctdb_cmdline_client(struct event_context *ev); +struct ctdb_context *ctdb_cmdline_client(struct tevent_context *ev); struct ctdb_statistics; int ctdb_ctrl_statistics(struct ctdb_context *ctdb, uint32_t destnode, struct ctdb_statistics *status); diff --git a/ctdb/include/ctdb_private.h b/ctdb/include/ctdb_private.h index ca3d613f5bc..af271f4bfb5 100644 --- a/ctdb/include/ctdb_private.h +++ b/ctdb/include/ctdb_private.h @@ -382,7 +382,7 @@ enum ctdb_freeze_mode {CTDB_FREEZE_NONE, CTDB_FREEZE_PENDING, CTDB_FREEZE_FROZEN #define NUM_DB_PRIORITIES 3 /* main state of the ctdb daemon */ struct ctdb_context { - struct event_context *ev; + struct tevent_context *ev; struct timeval ctdbd_start_time; struct timeval last_recovery_started; struct timeval last_recovery_finished; |