全部博文(573)
发布时间:2015-12-23 14:59:38
ldconfig管理动态链接库 在网上看到了有关动态链接库的管理程序,这篇文章不错,特此摘录下来。原文地址:http://techbbs.zol.com.cn/1/60_1689.html装软件管家系统时遇到的找不到动态库,碰到了ldconfig,不甚了解,找了点资料分享下。.........【阅读全文】
发布时间:2015-12-23 14:57:33
C写的实现wc和ls函数 以下是用linux C写的实现wc功能的函数#include #define BEGIN 1;int main(int argc, char *argv[]){ int characters, lines, words, state; char c; state = characters = lines = words = .........【阅读全文】
发布时间:2015-12-23 14:52:58
用c语言模拟进程调度/* *Author:Mr Sunny *Time:Oct 2010 * */#include #include #include #include #define N 3enum state { e, r, t, w, c};struct PCB { int id, priorit.........【阅读全文】