2 * Copyright (C) 2008 Martin Willi
3 * Hochschule fuer Technik Rapperswil
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the
7 * Free Software Foundation; either version 2 of the License, or (at your
8 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
19 * @defgroup ha_sync_ctl ha_sync_ctl
23 #ifndef HA_SYNC_CTL_H_
24 #define HA_SYNC_CTL_H_
26 #include "ha_sync_segments.h"
28 typedef struct ha_sync_ctl_t ha_sync_ctl_t
;
31 * HA Sync control interface using a FIFO.
33 struct ha_sync_ctl_t
{
36 * Destroy a ha_sync_ctl_t.
38 void (*destroy
)(ha_sync_ctl_t
*this);
42 * Create a ha_sync_ctl instance.
44 * @param segments segments to control
45 * @return HA sync control interface
47 ha_sync_ctl_t
*ha_sync_ctl_create(ha_sync_segments_t
*segments
);
49 #endif /* HA_SYNC_CTL_ @}*/