Blob Blame History Raw
/*
 * Soft:        Keepalived is a failover program for the LVS project
 *              <www.linuxvirtualserver.org>. It monitor & manipulate
 *              a loadbalanced server pool using multi-layer checks.
 *
 * Part:        bfd_scheduler.c include file.
 *
 * Author:      Ilya Voronin, <ivoronin@gmail.com>
 *
 *              This program is distributed in the hope that it will be useful,
 *              but WITHOUT ANY WARRANTY; without even the implied warranty of
 *              MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 *              See the GNU General Public License for more details.
 *
 *              This program is free software; you can redistribute it and/or
 *              modify it under the terms of the GNU General Public License
 *              as published by the Free Software Foundation; either version
 *              2 of the License, or (at your option) any later version.
 *
 * Copyright (C) 2015-2017 Alexandre Cassen, <acassen@gmail.com>
 */
#ifndef _BFD_SCHEDULER_H_
#define _BFD_SCHEDULER_H_

#include "scheduler.h"
#include "bfd_data.h"

extern int bfd_dispatcher_init(thread_t *);
extern void bfd_dispatcher_release(bfd_data_t *);
#ifdef THREAD_DUMP
extern void register_bfd_scheduler_addresses(void);
#endif

#endif				/* _BFD_SCHEDULER_H_ */