/* * Copyright (C) 2008 Martin Willi * HSR Hochschule fuer Technik Rapperswil * * 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. See . * * 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. */ /** * @defgroup ha_ctl ha_ctl * @{ @ingroup ha */ #ifndef HA_CTL_H_ #define HA_CTL_H_ #include "ha_segments.h" #include "ha_cache.h" typedef struct ha_ctl_t ha_ctl_t; /** * HA Sync control interface using a FIFO. */ struct ha_ctl_t { /** * Destroy a ha_ctl_t. */ void (*destroy)(ha_ctl_t *this); }; /** * Create a ha_ctl instance. * * @param segments segments to control * @param cache message cache for resynchronization * @return HA control interface */ ha_ctl_t *ha_ctl_create(ha_segments_t *segments, ha_cache_t *cache); #endif /** HA_CTL_ @}*/