在线笔记
全部博文(596)
发布时间:2013-04-16 16:06:19
> cat hello.c#include<stdio.h>int main(int argc, char **agv[]){#pragma omp parallel printf("hello, from %d\n", omp_get_thread_num()); &nb.........【阅读全文】
发布时间:2013-04-16 10:00:56
1. 确认系统是不是多核的$ cat /proc/cpuinfo |grep processorprocessor : 0processor : 1processor : 2processor : 3processor : 4processor : 5processor .........【阅读全文】
发布时间:2013-04-10 21:23:46
http://www.ningoo.net/html/2010/use_systemtap_on_ubuntu.html安装systemtapsudo apt-get install systemtapUbuntu Desktop默认没有安装kernel debug info的包,systemtap无法追踪内核信息。查看内核版本ningoo@ning:~/stap$ uname -r2.6.35-22-generic从这里下载对应的kernel debug info包,安装sudo .........【阅读全文】
发布时间:2013-04-10 11:41:13
openssh http://www.openssh.com/portable.htmlopenssl http://www.openssl.org/sourcezlib http://www.zlib.net/ZLIB# ./configure --prefix=/work/ssh/install/zlib-1.2.3OPENSSL# ./Configure --prefix=/work/ssh/install/openssl-0.9.8e&n.........【阅读全文】
发布时间:2013-01-28 16:37:30
1 selectselect()系统调用提供一个机制来实现同步多元I/O:#include #include #include int select (int n,fd_set *readfds,fd_set *writefds,fd_set *exceptfds,struct timeval *timeout);FD_CLR(int fd, fd_set *set);FD_ISSET(int fd, fd_set *set);.........【阅读全文】