mirror of
https://github.com/samba-team/samba.git
synced 2025-09-23 01:44:20 +03:00
lib/tevent: expose ev_timeval_zero() for internal usage
metze
This commit is contained in:
@@ -157,6 +157,7 @@ void tevent_common_fd_set_close_fn(struct tevent_fd *fde,
|
|||||||
uint16_t tevent_common_fd_get_flags(struct tevent_fd *fde);
|
uint16_t tevent_common_fd_get_flags(struct tevent_fd *fde);
|
||||||
void tevent_common_fd_set_flags(struct tevent_fd *fde, uint16_t flags);
|
void tevent_common_fd_set_flags(struct tevent_fd *fde, uint16_t flags);
|
||||||
|
|
||||||
|
struct timeval ev_timeval_zero();
|
||||||
bool ev_timeval_is_zero(const struct timeval *tv);
|
bool ev_timeval_is_zero(const struct timeval *tv);
|
||||||
struct tevent_timer *tevent_common_add_timer(struct tevent_context *ev,
|
struct tevent_timer *tevent_common_add_timer(struct tevent_context *ev,
|
||||||
TALLOC_CTX *mem_ctx,
|
TALLOC_CTX *mem_ctx,
|
||||||
|
@@ -44,7 +44,7 @@ static int ev_timeval_compare(const struct timeval *tv1, const struct timeval *t
|
|||||||
/**
|
/**
|
||||||
return a zero timeval
|
return a zero timeval
|
||||||
*/
|
*/
|
||||||
static struct timeval ev_timeval_zero(void)
|
struct timeval ev_timeval_zero(void)
|
||||||
{
|
{
|
||||||
struct timeval tv;
|
struct timeval tv;
|
||||||
tv.tv_sec = 0;
|
tv.tv_sec = 0;
|
||||||
|
Reference in New Issue
Block a user