debug.c
来自「The CUBA library provides new implementa」· C语言 代码 · 共 86 行
C
86 行
#define DEBFile stdout#define DEBF "%9.5f"//#define DEBF "%21.17f"//#define DEBF "%a"#ifdef DEBFile#define DEBOpen()#define DEBClose()#elseFILE *DEBFile;static inline void DEBOpen(){#ifdef MLVERSION DEBFile = fopen("log-mma", "w");#else DEBFile = fopen("log-c", "w");#endif}static inline void DEBClose(){ fclose(DEBFile);}#endif#define DEB(...) fprintf(DEBFile, __VA_ARGS__); fflush(DEBFile)static inline void DEBVec(const char *s, creal *d){ char space[strlen(s) + 2]; count dim; memset(space, ' ', sizeof(space)); space[sizeof(space) - 1] = 0; DEB("%s=" DEBF "\n", s, d[0]); for( dim = 1; dim < ndim_; ++dim ) DEB("%s" DEBF "\n", space, d[dim]);}/*static inline void DEBRegion(const char *s, cBounds *b){ char space[strlen(s) + 3]; count dim; memset(space, ' ', sizeof(space)); space[sizeof(space) - 1] = 0; DEB("%s: " DEBF " - " DEBF "\n", s, b[0].lower, b[0].upper); for( dim = 1; dim < ndim_; ++dim ) DEB("%s" DEBF " - " DEBF "\n", space, b[dim].lower, b[dim].upper);}*/static inline void DEBMem(const char *s){ int kbytes = -1; FILE *f; char procfile[128]; sprintf(procfile, "/proc/%d/status", getpid()); f = fopen(procfile, "r"); while( !feof(f) ) { char s[128]; *s = 0; fgets(s, sizeof(s), f); if( sscanf(s, "VmSize: %d", &kbytes) == 1 ) break; } fclose(f); DEB("MEM %s: %d kbytes\n", s, kbytes);}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?