mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-03 23:15:52 +00:00
c7940076bf
remove extern "C"
48 lines
1.1 KiB
C
48 lines
1.1 KiB
C
#ifndef LLARP_TIMER_H
|
|
#define LLARP_TIMER_H
|
|
#include <llarp/common.h>
|
|
#include <llarp/threadpool.h>
|
|
|
|
/** called with userptr, original timeout, left */
|
|
typedef void (*llarp_timer_handler_func)(void *, uint64_t, uint64_t);
|
|
|
|
struct llarp_timeout_job
|
|
{
|
|
uint64_t timeout;
|
|
void *user;
|
|
llarp_timer_handler_func handler;
|
|
};
|
|
|
|
struct llarp_timer_context;
|
|
|
|
struct llarp_timer_context *
|
|
llarp_init_timer();
|
|
|
|
uint32_t
|
|
llarp_timer_call_later(struct llarp_timer_context *t,
|
|
struct llarp_timeout_job job);
|
|
|
|
void
|
|
llarp_timer_cancel_job(struct llarp_timer_context *t, uint32_t id);
|
|
|
|
void
|
|
llarp_timer_remove_job(struct llarp_timer_context *t, uint32_t id);
|
|
|
|
// cancel all
|
|
void
|
|
llarp_timer_stop(struct llarp_timer_context *t);
|
|
|
|
// blocking run timer and send events to thread pool
|
|
void
|
|
llarp_timer_run(struct llarp_timer_context *t, struct llarp_threadpool *pool);
|
|
|
|
/// single threaded run timer, tick all timers
|
|
void
|
|
llarp_timer_tick_all(struct llarp_timer_context *t,
|
|
struct llarp_threadpool *pool);
|
|
|
|
void
|
|
llarp_free_timer(struct llarp_timer_context **t);
|
|
|
|
#endif
|