libcm is a C development framework with an emphasis on audio signal processing applications.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

cmMain.c 722B

123456789101112131415161718192021222324252627282930313233
  1. #include "cmGlobal.h"
  2. #include "cmRpt.h"
  3. #include "cmMem.h"
  4. #include "cmMallocDebug.h"
  5. #include "cmLinkedHeap.h"
  6. void print(void* cmRptUserPtr, const char* text)
  7. { printf(text); }
  8. int main(int argc, char* argv[] )
  9. {
  10. // initialize the heap check library
  11. bool memDebugFl = true;
  12. unsigned memPadByteCnt = memDebugFl ? 8 : 0;
  13. unsigned memAlignByteCnt = 16;
  14. unsigned memFlags = memDebugFl ? kTrackMmFl | kDeferFreeMmFl | kFillUninitMmFl : 0;
  15. cmRpt_t rpt;
  16. cmRptSetup(&rpt,print,print,NULL);
  17. //cmMdTest(&rpt);
  18. //return 0;
  19. cmMdInitialize( memPadByteCnt, memAlignByteCnt, memFlags, &rpt );
  20. cmLHeapTest();
  21. cmMdReport();
  22. cmMdFinalize();
  23. return 0;
  24. }