#ifdef DEBUG_PROCESS /* Debugging process code is difficult; where to write debug output? */ static void debugPrint(char *format, ...) { FILE *tty = fopen("/dev/tty", "w"); va_list ap; va_start(ap, format); vfprintf(tty, format, ap); va_end(ap); fclose(tty); } #endif /* DEBUG_PROCESS */
2018年10月2日 星期二
不定參數印 log
From the UNIXProcess_md.c
訂閱:
文章 (Atom)
不定參數印 log
From the UNIXProcess_md.c #ifdef DEBUG_PROCESS /* Debugging process code is difficult; where to write debug output? */ static void deb...
-
1. SikuliX 本體下載 首先你必須要下載SikuliX (廢話) (撰寫本文時, SikuliX版本為 sikulixsetup-1.1.2.jar) http://sikulix.com/quickstart/ 由於SikuliX IDE是運行在Ja...
-
最近在看CNN的文章的時候, 提到了Hierarchy的概念 目的是以 divide-and-conquer 的概念來將大問題切割為小問題 以image recognition / computer vision來說, "直覺上"每個pixels只會...