搜索资源列表
file_system
- 本源代码所设计的文件系统,具有建立文件(create)、打开文件(open)、读文件(read)、写文件(write)、关闭文件(close)、撤销文件(delete)等功能。在模拟程序中可从键盘上输入文件操作命令来模拟各用户程序中所调用的各种文件操作,用一个结束命令(end)停止程序的执行。-source code designed by the file system, with the establishment of documents (create) open the file (o
MyIE_Code
- 1.MyIE开源工程协议 MyIE开源工程遵循GNU通用公共许可证GPL(GNU General Public License)开发,任何人都可以永久免费安装使用,在你下载和使用MyIE源代码前,请阅读并同意这个许可(http://www.gnu.org/copyleft/gpl.html),中文版本(http://www.morequick.com/down/gpl_chs.htm). 2.工程编译提示 如果你使用的是VC++6,你需要更新2个头文件,请从这里下载: http
marvell_bios_driver
- 此为marvell 6081在bios芯片中运行的代码,用于识别6081芯片的。下载后请阅读readme文件-this marvell 6081 for the bios chip operation of the code, Recognition for the 6081 chip. After downloading please read the readme file
FIREDEV
- 一个完整的GUI界面OS,单盘启动 实现了多线程、FAT32文件读写,GUI图形界面-a complete OS GUI interface, single-disk realized multiple threads, FAT32 file read and write, GUI graphical interface
模拟二级文件系统
- 用C语言编写程序,模拟二级目录的文件系统 建立一个模拟文件系统,能实现建立、打开、删除、关闭、复制、读、写、查询等功能-use C language write programmes,simulate two-level directory file systems,create a simulated file systems in order to realize the functions such as create,open,delete,close,copy,read,write,f
用login二级目录的文件系统
- 这个程序是模拟采用二级目录结构的磁盘文件系统中的文件操作,它可以实现对文件的一些基本管理,如:读、写、删除文件等。通过这个程序可掌握文件子系统的原理,加深对二级目录结构的文件系统中用户管理、文件管理、目录管理的理解,并用程序实现对文件子系统的模拟。-the procedure is simulated using two disk directory structure of the file system file manipulation, it can be achieved on som
project1
- 操作系统内存分配释放算法的C语言模拟,包括首次适应法与循环首次适应法。指令可通过io转向从文件读入-The release of the operating system memory allocation algorithm for C-language simulation, including the first cycle for the first time to adapt to meet the law and the law. Io steering commands can b
ucore-lab1
- Ucore是一个很小的适于学习的操作系统,此“麻雀”包含虚存管理、进程管理、处理器调度、同步互斥、进程间通信、文件系统等主要内核功能,总的内核代码量(C+asm)不会超过5K行。充分体现了“小而全”的指导思想。 这是ucore的实验1:系统软件启动过程。实验目的:操作系统是一个软件,也需要通过某种机制加载并运行它。在这里我们将通过另外一个更加简单的软件-bootloader 来完成这些工作。为此,我们需要完成一个能够切换到x86 的保护模式并显示字符的bootloader,为将来启动操作系统
file
- 用vc写得操作系统课程设计题,简单文件系统实现,对文件和目录进行创建,修改,查询,删除,读,写,打开,关闭等功能-Written by vc title operating system curriculum design, simple file system for files and directories to create, modify, query, delete, read, write, open, shut down and other functions
File
- wenjian 通过课程设计,要求学生主要掌握如下内容: 1.文件的物理结构可以选用顺序分配、链表分配或索引分配。 2.建立文件:从命令中得到文件名,得到该文件的文件长度,建立文件。修改目录表。 3.删除文件:回收文件占用的空间,修改目录表 4.读文件:read [文件名] [显示开始字节] [显示的字节数] ,直接显示所需要的字节数。 5.写文件:write [文件名] [插入的位置] [插入的内容] 6.查询属性:显示文件属性 文件名,类型,长度,时间
file-system
- 操作系统课设 文件管理系统creat close open read write-操作系统课设 文件管理系统creat close open read write
J4Filesystem
- 1、程序采用二级文件目录(即设置主目录MFD)和用户文件目录(UFD)。另外,为打开文件设置了运行文件目录(AFD)。 2、为了便于实现,对文件的读写作了简化,在执行读写命令时,只需改读写指针,并不进行实际的读写操作。 3、因系统小,文件目录的检索使用了简单的线性搜索。-1, the program uses two files directory (ie, set the home directory MFD) and user files directory (the UFD). I
file
- 操作系统文件操作模拟实验 设计一个N个用户的文件系统,每次用户可保存L个文件,一次运行用户可以打开S个文件。 程序采用二级文件目录(即设置主目录MFD)和用户文件目录(UFD)。另外,为打开文件设置了运行文件目录,用户已打开文件表UOF.。 为了便于实现,对文件的读写作了简化,在执行读写命令时,只需改读写指针,并不进行实际的读写操作 -OS file operations simulation Design an N-user file system, each
FileManage
- 操作系统文件管理功能的实现 ①可以实现下列命令: login 用户登录 dir 列文件目录 create 创建文件 delete 删除文件 open 打开文件 close 关闭文件 read 读文件 write 写文件 ②列目录时要列出文件名、物理地址、保护码和文件长度. ③源文件可以进行读写保护. -The operating system file management functions to achieve ① can a
Round-robin-supporting-file-reading
- 利用时间轮转算法,实现了对不同进程的调度,支持文件的读取,无须键盘输入。-The use of time rotary algorithms, the scheduling of the different processes, support files, read, without keyboard input.
file-system-in-OS
- 简单的二级文件系统 在任一OS下,建立一个大文件,把它假象成硬盘,在其中实现一个简单的模拟文件系统。 编写一管理程序对此空间进行管理,要求: 1. 实现盘块管理 2. 实现文件的读写操作 3. 每组最多2人,小组内要有明确分工,课程设计报告中设计部分可以相同,个人实现部分不同 参考建议: 将模拟硬盘的文件空间划分为目录区,文件区;采用位示图进行空间管理,盘块的分配使用显示链接(FAT表)的方式。-Simple two file system
file-management-system--
- 本项目名称为《模拟一个简单二级文件管理系统》,该项目中包含目录的创建,目录下文件、子目录的创建。对文件的操作包括:创建、删除、读、写、修改文件属性等模式。对目录的操作包括:创建、删除。-The name of the project for the simulation of a simple two-level file management system, the project included the creation of the directory, directory files,
readfile
- 实现文件的读取,读取文件中指定行与列的数据-Implementation file read, reads the specified row and column data
readwrieter
- 创建一个控制台进程,此进程包含n个线程。用这n个线程来表示n个读者或写者。每个线程按相应测试数据文件的要求进行读写操作。用信号量机制分别实现读者优先和写者优先的读者-写者问题。-Creating a console, this process contain n threads. Use of these n threads to express n readers who write. Each thread according to the requirements of relevant
银行家
- 银行家算法,操作系统课程设计,可以文件读取,也可以手动输入数据(The banker's algorithm, the operating system course design, the file read, and the manual input of the data)
