delta-debug.h 536 B

123456789101112131415161718
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * Copyright (C) STMicroelectronics SA 2015
  4. * Authors: Hugues Fruchet <hugues.fruchet@st.com>
  5. * Fabrice Lecoultre <fabrice.lecoultre@st.com>
  6. * for STMicroelectronics.
  7. */
  8. #ifndef DELTA_DEBUG_H
  9. #define DELTA_DEBUG_H
  10. char *delta_streaminfo_str(struct delta_streaminfo *s, char *str,
  11. unsigned int len);
  12. char *delta_frameinfo_str(struct delta_frameinfo *f, char *str,
  13. unsigned int len);
  14. void delta_trace_summary(struct delta_ctx *ctx);
  15. #endif /* DELTA_DEBUG_H */