12 lines
318 B
C
12 lines
318 B
C
#ifndef PING_SCHEDULER_H
|
|
#define PING_SCHEDULER_H
|
|
|
|
#include <sys/time.h>
|
|
#include "internal/ping/ping_state.h"
|
|
|
|
void ping_scheduler_init(struct ping_state *state);
|
|
void ping_scheduler_arm(const struct ping_config *config);
|
|
void ping_scheduler_select_tv(const struct ping_config *config,
|
|
struct timeval *tv);
|
|
|
|
#endif
|