Source
15
15
** You should have received a copy of the GNU General Public License
16
16
** along with this program; if not, write to the Free Software
17
17
** Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18
18
**/
19
19
20
20
#ifndef ZABBIX_DBSYNCER_H
21
21
#define ZABBIX_DBSYNCER_H
22
22
23
23
#include "zbxthreads.h"
24
24
25
+
typedef struct
26
+
{
27
+
int config_histsyncer_frequency;
28
+
}
29
+
zbx_thread_dbsyncer_args;
30
+
25
31
ZBX_THREAD_ENTRY(zbx_dbsyncer_thread, args);
26
32
27
33
#endif