dmm_adaptor.h 414 B

123456789101112131415161718
  1. #ifndef DMM_ADAPTOR_H
  2. #define DMM_ADAPTOR_H
  3. #include <dmmlib/heap.h>
  4. void set_frag_params(heap_t *heap);
  5. void set_foot_params(heap_t *heap);
  6. void update_frag_params(heap_t *heap);
  7. void update_foot_params(heap_t *heap);
  8. float get_current_fragmentation(heap_t *heap);
  9. void check_footprint(heap_t *heap);
  10. void malloc_state_refresh(heap_t *heap);
  11. void free_state_refresh(heap_t *heap);
  12. #endif /* DMM_ADAPTOR_H */