搜索资源列表
grub-0.97.tar
- Linux启动程序grub的源码分析与实现;
Reader-Writer
- 通过研究Linux的线程机制和信号量实现读者写者(Reader-Writer)问题并发控制。 1)写-写互斥:不能有两个写者同时进行写操作; 2)读-写互斥:不能同时有一个线程在读,而另一个线程在写; 3)读-读允许:可以有一个或多个读者在读; 4)读者优先的附加限制:如果读者申请进行读操作时已有另一个读者正在进行读操作,则该读者可直接开始读操作; 5)写者优先的附加限制:如果一个读者申请进行读操作时已有另一个写者在等待访问共享资源,则该读者必须等到没有写者处于等待状态后才能
topapi_taoke
- [基本功能] 1.淘宝客商品分类检索 2.淘宝客搜索推广,内嵌淘宝客搜索推广代码,只需配置文件即可进行商品推广; 3.网站商品管理以及店铺管理,可以灵活的组织网站商品及店铺信息; 4.淘宝客频道推广; 5.淘宝客商品模板管理; 6.伪静态页面,更有利于搜索引擎收录 [系统环境需求] 1、Windows 平台: IIS/Apache + PHP5 2、Linux/Unix 平台 Apache + PHP5 建议使用平台:Linux +
lab1
- Nachos上开发的一个初级shell。Shell支持cd, dir, clr, environ, echo, help, pause and quit命令;上述命令之外的其他命令通过系统调用fork和exec创建子进程实现; -Nachos on the development of a primary shell. Shell support cd, dir, clr, environ, echo, help, pause and quit order the order other
4
- 掌握系统调用msgget()、msgsnd()、msgrevmsgctl()的使用方法及其功能,理解消息通信原理; 系统理解linux 的三种通信机制。 -Master the system call msgget, msgsnd (), msgrevmsgctl () to use its functions, to understand the message communication theory system to understand the linux three com
5
- 掌握系统调用shmget()、shmat()、shmdtshmctl()的使用方法及其功能,理解共享存储区通信原理; 系统理解linux 的三种通信机制。 -Master the system call shmget (), shmat (), shmdtshmctl () to use its functions, understanding, communication principle of shared storage area system to understand th
linuxanalysis
- 通过对Linux的fork.c、exit.c代码的分析, 了解一个操作系统进程的创建、退出的过程; 锻炼学生分析大型软件代码的能力;通过与同组同学的合作, 锻炼学生的合作能力。-Based on Linux fork. C, exit. C code analysis, understand an operating system process to create and exit process Training students the ability of analysis of la
diaodu
- 1)在Linux下用C语言编程模拟优先级程调度算法。为了清楚地观察每个进程的调度过程,程序将每个时间片内的进程情况显示出来。2)进程控制块是进程存在的唯一标志,因此,在模拟算法中每一个进程用一个进程控制块PCB来代表,PCB用一结构体表示。3)进程在运行过程中其状态将在就绪、执行、完成几种状态之间转换,同时进程可能处于不同的队列中,如就绪队列。在优先级调度算法中,选择单向队列,入队既是将进程控制块插入队尾,出队既是按优先级重新排列的队,删除队头元素。4)为了便于处理,程序中的某进程运行时间以时间