简介
该用户还未填写简介
擅长的技术栈
可提供的服务
暂无可提供的服务
转载自 :http://blog.sina.com.cn/s/blog_475bf56e0100uo3o.html在Linux虚拟机上开发时,遇到以下错误:Making all in testmake[5]: Entering directory`/home/linux/software/zion/media/mux/disk/test'powerpc-e300
获得linux线程栈的大小结果是:10485760 B换算下 恰哈是10MB编译命令 gcc -lpthread p_stack.c代码:#include#include#include#includevoid* thread(){pthread_attr_t pattr;size_t size = 0;printf("default s
转载自:http://www.jwzyj.com/jw/pingbandiannao/201108/3137.htmllinux中如何显示当前登陆系统用户的状态可以使用who查找登陆的用户列表,但不清楚你要查找的状态指哪些状态指的是什么状态?用id,可以查看用户的详细信息用who,可以查看目前登陆在这台服务器上的所有用户终端信息l
1. 什么是defunct process,就是已经死了的process2. 如何kill掉该process呢,有两种方法:重启机器; 将该process的父亲杀掉怎样找到defunct process的父亲呢,ps -ef | grep defunct_process_pid 。浅议Unix的defunct进程(“僵尸”进程)本文出自:http://www2.ccw
转载自:http://hi.baidu.com/lewutian/blog/item/d2d723b75391d7ff31add1f1.html使用 Sockets API,我们可以开发客户机和服务器应用程序,它们可以在本地网络上进行通信,也可以通过 Internet 在全球范围内进行通信。与其他 API 一样,您可以通过一些方法使用 Sockets API,从而提高 Socket 的
svn log -v显示所有日志 并带修改的文件名svn log -r ver1:ver2显示2个版本之间的改动svn diff -r ver1:ver2版本回滚综上,最必要的就是3个步骤:1. 确定版本号 svn log2. 合并 svn merge -r :3. commit. svn ci -m 'rollback to last revision:'
#include#include#includeusing namespace std;int main(){map map1;map1[string("tttt")] = 1;map1[string("ggg")] = 2;map1.insert(pair("niubi", 3));map::iterator it = map1.begin();
windows下方法1:对于TortoiseSVN软件,右键出TortoiseSVN菜单Settings->Saved Data->Authentication data,Clear或者方法2:C:\Documents and Settings\Administrator\ApplicationData\Subversion\auth删除auth下面的所有文件夹如果以上2个方法
svn diff --diff-cmd "diff" -x "-q" . | grep Index | cut -d " " -f 2转载自:http://jonathanpolansky.com/2009/04/list-only-the-path-and-filenames-of-files-with-differences-using-subversion-svn/以下是原文
linux gdb的3个图形化调试工具insight debugger (GNUpro Toolkit)dddkdbg