搜索资源列表
proccANDmemory
- 进程以及内存分配编程,在TC编译器下以图形方式模拟系统进程调度以及内存分配。-process and memory allocation program, the TC compiler under the graphic simulation and process scheduling system memory allocation.
meryf
- 操作系统实验四:连续式与分页式主存管理的模拟实现 模拟在连续分配与分页管理两种方式下,主存空间的分配与回收,帮助学生加深了解存储器管理的工作过程。 注意,该实验为模拟实验,并不要求进行真正的内存分配与回收,主要是编写程序模拟其中过程即可。 -four experimental operating system : Continuous and pagination main memory management simulation simulation in a row and pa
place
- 存储器管理是操作系统核心内容。本设计要求用C语言编写和调试一个模拟内存管理程序。实现内存的分配和回收。熟悉操作系统内存分区管理方案的设计和实现。通过课程设计可以加深理解有关内存的分配和回收过程,并体会和了解分区分配的具体实施办法。
dlab-handout
- 模拟存器内存分配,有C语言编写 模拟存器内存分配,有C语言编写
simchain
- 模拟指针,使用固定的数组模拟指针的内存分配,提高分配效率-simulated target, the use of fixed arrays of simulated targets memory allocation and improve distribution efficiency
mem
- 模拟编译系统的内存分配与释放的,实现一些简单的操作。首先用一个静态数组模拟内存空间(buf),当调用申请内存操作时,将从数组空间(buf)返回给调用者一定的空间,当调用释放内存的时候,将将指定部分的内存标记为未用。
a
- 用c语言编写一段程序,模拟存储管理中利用链表结构进行循环首次适应法的内存分配与释放操作
C++NeiCunFenPei
- C++模拟内存分配 一、思路 模拟编译系统的内存分配与释放的,实现一些简单的操作。首先用一个静态数组模拟内存空间(buf),当调用申请内存操作时,将从数组空间(buf)返回给调用者一定的空间,当调用释放内存的时候,将将指定部分的内存标记为未用。 1.分配规则 每块被分配或释放的内存由MemInfo记录,并保存于数组(buf)中作为内存空间的“头”,其后紧跟数据。MemInfo组成链表结构,表头不占用数组空间(buf)。当调用者申请内存时,将导致MemInfo链表的遍历,遍历的
malloc-memory
- 模拟操作系统对内存分配和释放的四种情况。用户可以自行设定将要分配和释放的内存大小来查看相应的结果。
虚拟存储器的内存管理
- 使用Windows2000/XP的API函数,编写一个包含两个线程的进程,一个线程用于模拟内存分配活动,一个线程用于跟踪第一个线程的内存行为,而且要求两个线程之间通过信号量实现同步。模拟内存活动的线程可以从一个文件中读出要进行的内存操作-Windows2000/XP use of the API functions, including the preparation of a two-threaded process, a thread used to simulate memory allo
monineicunfenpei
- 用高级语言编写和调试多道环境下连续可变式内存分配的模拟程序,以加深对连续可变式内存分配算法的理解。-Use of advanced language writing and debugging multi-channel environment variable memory allocation for the simulation program in order to deepen their understanding of continuous variable memory allo
fenqu
- 模拟内存分区分配和回收(首次适应算法,最佳适应算法)-Simulation of geographical distribution and recovery of memory (the first adaptation algorithm, the best adaptation algorithm)
KeChengSheJi
- (1)能允许多个用户登录,为每个用户建立进程或线程,并进行进程管理; (2)能为进程模拟分配内存,并设计一个跟踪该内存模拟分配的进程或线程,记录内存分配的结果; (3)能模拟文件系统管理,进程可以对文件系统(包括文件和目录)进行读、写、创建、删除、打开、关闭等操作; (4)能模拟进程通信管理,用户之间可以相互通信交流; (5)最好能采用类似于Windows的窗口界面; -(1) to allow multiple users to log on, for each user
2_Memory
- 内存管理实验程序。 要求 : 使用 Windows XP的 API 函数,编写一个包含两个线程的进程,一个线程用于模拟内存 分配活动,一个线程用于跟踪第一个线程的内存行为,而且要求两个线程之间通过信号量实 现同步。模拟内存活动的线程可以从一个文件中读出要进行的内存操作,每个内存操作包括 如下内容: 1、时间:操作等待时间。 2、块数:分配内存的粒度。 3、操作:包括保留(reserve)一个区域、提交(commit)一个区域、释放(release)一个区域
neicunfenpei
- 使用Windows2000/XP 的API函数,编写一个包含两个线程的进程,一个线程用于模拟内存分配活动,一个线程用于跟踪第一个线程的内存行为。具体内容查看readme文件-Use Windows2000/XP the API functions, to prepare a process contains two threads, one thread is used to simulate memory allocation activity, a thread is used to tra
neicunfenpei
- 动态内存分配算法,用c++实现。模拟内存分配回收,可随时查看内存分配情况-Dynamic memory allocation algorithm, using c++ implementation. Analog memory allocation recovery, they can always see the memory allocation
scsy
- 用首次适应算法模拟内存分配(计算机操作系统原理)-For the first time with adaptive algorithm simulation memory allocation
mymaloc
- 双链表实现malloc free,模拟内存分配,开辟数组以模拟-Doubly linked list implementation malloc free, analog memory allocation, open arrays to simulate
未命名6
- 主存空间分配与回收模拟实现 模拟内存分配的c语言实现(Simulation of main memory space allocation and recovery)
First Fit算法的java实现
- JAVA模拟内存分配与释放:首次适应算法(JAVA analog memory allocation and release)