diff --git a/example/simple/src/ctx.c b/example/simple/src/ctx.c index 74996d6..adcc15d 100644 --- a/example/simple/src/ctx.c +++ b/example/simple/src/ctx.c @@ -143,6 +143,14 @@ static int ctx_cleaner_init(ocf_cleaner_t c) return 0; } +/* + * Kick cleaner thread. Cleaner thread is left non-implemented, + * to keep this example as simple as possible. + */ +static void ctx_cleaner_kick(ocf_cleaner_t c) +{ +} + /* * Stop cleaner thread. Cleaner thread is left non-implemented, to keep * this example as simple as possible. @@ -244,6 +252,7 @@ static const struct ocf_ctx_config ctx_cfg = { .cleaner = { .init = ctx_cleaner_init, + .kick = ctx_cleaner_kick, .stop = ctx_cleaner_stop, },