示例#1
0
/* cleans up scheduled downtime data */
int cleanup_downtime_data(char *config_file) {

	/* free memory allocated to downtime data */
	free_downtime_data();

	return OK;
}
示例#2
0
/* cleans up scheduled downtime data */
int cleanup_downtime_data(char *config_file) {
	int result = OK;

	/**** IMPLEMENTATION-SPECIFIC CALLS ****/
#ifdef USE_XDDDEFAULT
	result = xdddefault_cleanup_downtime_data(config_file);
#endif

	/* free memory allocated to downtime data */
	free_downtime_data();

	return result;
}
示例#3
0
/* cleans up scheduled downtime data */
int cleanup_downtime_data(void) {
	/* free memory allocated to downtime data */
	free_downtime_data();
	return OK;
	}