Inner Peace
HappyAndrew
天外有天,人外有人。
全部博文(11)
DistributComputi(1)
LinuxKernel(3)
LinuxProgramming(2)
2013年(10)
2012年(1)
小渡2011
Kernel_L
hades201
ymc4444
subingxi
willcrea
zjw0722
紫奇缘
阳子8527
发布时间:2013-09-04 22:48:32
Linux下静态库文件的扩展名为".a"(Archieve), 静态库的文件名形式是libname.a。 动态库文件的扩展名为".so"(Shared Object),所有动态库文件名的形式是libname.so。如:线程函数库被称作 libthread.so。vim myfunction.c#include "myfunction.h".........【阅读全文】
发布时间:2013-09-04 22:41:42
#!/bin/sh while(true) do pid=`ps ax | grep $1 | grep -v /bin/sh | grep -v grep | cut -b1-5` if [ -n "$pid" ]; then break; fi&nbs.........【阅读全文】
登录 注册