新手上路
发布时间:2014-11-21 15:23:37
git log 默认的回显方式是 Date: Mon Oct 20 17:26:23 2014 月份用英文缩写显示,看的不是很习惯。 于是改成了这样: Date: 2014-10-21 14:55:24 +0800 嗯,舒服多了。.........【阅读全文】
发布时间:2014-03-13 15:35:41
* Generic hash function to calculate a hash code from the given string. * * For each byte of the string, this function left-shifts the value in an * accumulator and then adds the byte into the accumulator. The contents of * the accumulator is returned after the entire s.........【阅读全文】
发布时间:2014-03-11 18:00:00
Your local changes to the following files would be overwritten by mergeerror: Your local changes to the following files would be overwritten by merge: protected/config/main.phpPlease, commit your changes or stash them before you can merge.参考http://blog.csdn.net/z.........【阅读全文】
发布时间:2014-03-11 15:03:59
编译版本时遇到ld连接错误 warning: multiple common of “CGM_MUTEX_SEM”, 把CGM_MUTEX_SEM的声明和定义放到同一个c文件中解决。其他c文件通过extern引用。附 ld warning信息:警告信息. 这里给出三种类型的全局符号的解释(用C语言): `int i = 1;' 一个定义, 它会存在于输出文件中的已初始化数据节. `ex.........【阅读全文】