资源列表
qt_cPP_project
- linux qt 实现的一个完整的界面交互程序,包括许多ui小细节的实现-an integrated program fullfil ui interaction which include many details
LAB1
- 卡耐基梅隆大学操作系统实验,内含在VMware下ubuntu13.04的安装与配置过程,在Ubuntu中编写第一个helloword,以及x86指令解析文件等等。-Carnegie Mellon University experimental operating system, containing at ubuntu13.04 VMware installation and configuration process, the preparation of the first hellowor
code
- C语言写的可以查找最大字符串,二叉树查找结点。汇编程序。代码。-C language to find the maximum string, two fork tree search node. Assembler Code
cread
- c语言修改配置文件,亲自测试可以使用,同时有使用说明。-C language to modify the configuration file, the test can be used, but also shows.
pv
- 进程间同步与互斥,两个生产者三个消费者,使用信号量-Inter-process synchronization and mutual exclusion, three two producers to consumers, using semaphores
task
- C语言模拟闹钟、任务设置,可以实现任意星期的组合,及按分、时、日、周、月、年启动的计划任务-c language simulate alarm,task setting
inux-C--
- linux C 实现文件誊抄 -main文件-inux C implementation file transcr iptions - main file
snake.tar
- Unix下C++实现,贪吃蛇游戏,基本功能都实现了-Under C++ Unix implementation, Snake game, basic functions are realized
calc_final
- 计算器(支持加减乘除、乘方、三角函数)设计,开发平台为linux,开发语言为c++。-The calculator (support involution, add, subtract, multiply and divide trigonometric functions) design, development platform for the Linux, the development of language is c++.
philosopher
- 编制模拟“五个哲学家”问题的程序 目的: 学习和掌握并发进程同步的概念和方法。 要求: 1、程序语法 philosopher [ -t <time> ] <time>是哲学家进餐和沉思的持续时间值,缺省值为2秒。 2、五个哲学家的编号为0~4,分别用五个进程独立模拟。 3、程序的输出要简洁,仅输出每个哲学家进餐和沉思的信息。例如,当编号为3的哲学家在进餐时,就打印: philosopher 3 is eating
myshell
- 实验4 信号处理(20分) 目的: 学习和掌握信号的处理方法,特别是sigaction,alarm,sigpending,sigsetjmp和siglongjmp等函数的使用。 要求: 1、编制具有简单执行时间限制功能的shell: myshell [ -t <time> ] 这个测试程序的功能类似实验1,但是具有系统shell (在cs8服务器上是bash)的全部功能。<time>是测试程序允许用户命令执行的时间限制,默认值为无限制。
simpleshell
- 实验5 简单shell的设计和实现(20分) 目的: 1、练习使用编程环境,包括shell的命令,vi和gcc编译器。 2、体会进程概念,了解fork,execve,wait等系统调用。 要求: 1、除了系统调用execve,不允许使用其他的exec函数。输入应当允许带多个参数(一行内可以表示),不考虑通配符 (即“*”、“?”、“-”等等)的处理。 2、输入错误命令能提示出错并进入下一轮接收命令状态。 3、可以用Ctrl-C和Ctrl-\结束简单shell的运行。