代码拉取完成,页面将自动刷新
#include <sys/time.h>
#include "timer_event.h"
int timer_get_next_event(struct oflops_context *ctx)
{
struct timeval tv;
int ret;
ret=wc_get_next_event_delta(ctx->timers, &tv);
if(ret == 0)
{
return tv.tv_sec * 1000000 + tv.tv_usec; // next event
}
else if(ret == -1)
return 1000000; // no events; just say 1 sec
else
return -1; // next event timer already passed...
}
int timer_run_next_event(struct oflops_context *ctx)
{
void (* func)(void *);
void * val;
int id;
struct timeval t;
int err;
timer_event te;
err = wc_queue_extract(ctx->timers, &id, &t, &func, &val);
te.timer_id = id;
te.arg = val;
te.sched_time = t;
// func is ignored by oflops
ctx->curr_test->handle_timer_event(ctx, &te);
return 0;
}
int timer_init(struct oflops_context *ctx)
{
if(ctx->timers)
wc_queue_free(ctx->timers);
ctx->timers = wc_queue_init(10); // 10 == initial size; gets dynamically resized so it don't matter
return 0;
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。