compaction.h 388 B

1234567891011121314
  1. // SPDX-License-Identifier: GPL-3.0-or-later
  2. #ifndef NETDATA_COMPACTION_H
  3. #define NETDATA_COMPACTION_H
  4. #ifndef _GNU_SOURCE
  5. #define _GNU_SOURCE
  6. #endif
  7. #include "../rrdengine.h"
  8. extern int compaction_failure_recovery(struct metalog_instance *ctx, struct metadata_logfile **metalogfiles,
  9. unsigned *matched_files);
  10. #endif /* NETDATA_COMPACTION_H */