搜索资源列表

  1. zhucunchukongjiandefenpeihehuishou

    0下载:
  2. 实现主存储备空间的的分配和回收,是理解操作系统,加深对操作系统认识的一个很有用的程序。-Prepared to achieve the main storage space allocation and recovery, is to understand the operating system and deepen the understanding of the operating system to a useful under
  3. 所属分类:操作系统开发

    • 发布日期:2024-05-12
    • 文件大小:568320
    • 提供者:刘继凯
  1. first_fit

    0下载:
  2. 采用可变式分区管理方式,空闲区采用分区说明表时,使用首次适应算法实现主存的分配与回收-Using variable partition management, free zones, when the use of geographical descr iption, use the first algorithm to adapt to the distribution of main memory and the recovery
  3. 所属分类:系统编程

    • 发布日期:2024-05-12
    • 文件大小:18432
    • 提供者:zhouren
  1. dongtaifenquguanli

    0下载:
  2. 1.采用指定算法模拟动态分区管理方式的主存分配。能够处理以下的情形: ⑴ 随机出现的进程i申请jKB内存,程序能判断是否能分配,如果能分配,要求输出分配的首地址Faddress,并要求输出内存使用情况和空闲情况。 内存情况输出的格式为:Faddress该分区的首地址;Eaddress该分区的尾地址 Len 分区长度;Process 如果使用,使用的进程号,否则为0 ⑵ 主存分配函数实现寻找空闲区、空闲区表的修改、
  3. 所属分类:操作系统开发

    • 发布日期:2024-05-12
    • 文件大小:266240
    • 提供者:朱良
  1. cunzhucengcimoniqi

    0下载:
  2. 主存--辅存模拟 主存--cash模拟-cun chu mo ni qi
  3. 所属分类:JSP源码/Java

    • 发布日期:2024-05-12
    • 文件大小:159744
    • 提供者:zbf
  1. sun4

    0下载:
  2. 一个好的计算机系统不仅要有一个足够容量的、存取速度高的、稳定可靠的主存储器,而且要能合理地分配和使用这些存储空间。当用户提出申请存储器空间时,存储管理必须根据申请者的要求,按一定的策略分析主存空间的使用情况,找出足够的空闲区域分配给申请者。当作业撤离或主动归还主存资源时,则存储管理要收回作业占用的主存空间或归还部分主存空间。-A good computer system will not only have a sufficient c
  3. 所属分类:操作系统开发

    • 发布日期:2024-05-12
    • 文件大小:1024
    • 提供者:sun
  1. zhucunchu

    0下载:
  2. 操作系统经典实验,关于主存空间的分配与回收-Classical operating system experiments, on the main memory space allocation and recycling
  3. 所属分类:其他小程序

    • 发布日期:2024-05-12
    • 文件大小:4096
    • 提供者:麦琪
  1. MainMAssignAndRecover

    0下载:
  2. 模拟操作系统在最优先适应法下实现主存分配和回收的实现。可分配主存、回收主存、显示主存-Simulation of the operating system a top priority in the law to adapt to the distribution of main memory to achieve the realization and recovery. Could be allocated for main mem
  3. 所属分类:操作系统开发

    • 发布日期:2024-05-12
    • 文件大小:557056
    • 提供者:sinlov
  1. OS

    0下载:
  2. 采用分页管理,使用位示图实现主存的分配与管理-Visual C++ 6.0
  3. 所属分类:操作系统开发

    • 发布日期:2024-05-12
    • 文件大小:58368
    • 提供者:林茜
  1. OS

    0下载:
  2. 动态分区管理的主存分配模拟设计--最先适应法、最差适应法-Dynamic partitioning of main memory allocation management analog design- the first to meet the law, the worst adaptation law
  3. 所属分类:操作系统开发

    • 发布日期:2024-05-12
    • 文件大小:357376
    • 提供者:黄斌
  1. OperatingSystemCourseDesign

    0下载:
  2. 主存回收函数实现:有上邻空闲区和下邻空闲区,它们与回收区的合并;有上邻空闲区,无下邻空闲区,回收区与上邻空闲区的合并;无上邻空闲区,有下邻空闲区,回收区与下邻空闲区的合并。-Main memory to achieve recovery of function: there are o-free zones and free zones under the neighborhood, which combined with the re
  3. 所属分类:C#编程

    • 发布日期:2024-05-12
    • 文件大小:260096
    • 提供者:刘微
  1. yemianzhihuan

    0下载:
  2. 在段式虚拟存储器中,虚拟空间中能容纳的程序段数要比主存空间中能存放的相同长度的程序段数要多得多。因此,必然会出现当主存中所有页面都被占用,或者所有主存空间都被占用,而又要从磁盘存储器重调入新页(或新段)的情况。这时,必须从主存储器中淘汰一个不常用的页面(或程序段),以腾出主存空间来存放新调入的页面(或程序段),那么,按照什么样的规则替换主存储器中的页面(或程序段)呢?这就是页面替换算法要解决的问题。 -Piece of virtua
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-12
    • 文件大小:245760
    • 提供者:小江
  1. dongtaifenqu

    0下载:
  2. 可变分区方式是按作业需要的主存空间大小来分割分区的。当要装入一个作业时,根据作业需要的主存量查看是否有足够的空闲空间,若有,则按需要量分割一个分区分配给该作业;若无,则作业不能装入。随着作业的装入、撤离,主存空间被分成许多个分区,有的分区被作业占用,而有的分区是空闲的-Variable district is operating in accordance with the needs of the size of main memor
  3. 所属分类:操作系统开发

    • 发布日期:2024-05-12
    • 文件大小:2048
    • 提供者:邵二丫
  1. code

    0下载:
  2. 在可变分区管理方式下采用最先适应算法实现主存分配和实现主存回收-Variable partition management to adapt to the adoption of the first algorithm to achieve the realization of main memory main memory allocation and recovery
  3. 所属分类:操作系统开发

    • 发布日期:2024-05-12
    • 文件大小:3072
    • 提供者:娜娜
  1. VxWorksTFFS

    0下载:
  2. 目前的嵌入式系统多使用FLASH作为主存,因此,如何有效管理FLASH上的数据非常重要。文章以MX29LV160BT芯片为例,讨论了在VxWorks操作系统下Nor Flash上建立TFFS文件系统的一般步骤,从而为FLASH上的数据管理提供了理想的选择方式,同时也为开发者和用户升级程序提供了方便。-The current use of embedded systems as the main memory FLASH, so FLAS
  3. 所属分类:VxWorks

    • 发布日期:2024-05-12
    • 文件大小:64512
    • 提供者:jiaoyong
  1. oa

    0下载:
  2. 可变分区管理方式下采用首次适应算法实现主存分配和回收。操作系统实现的作业。-Variable Partition Management mode using first-fit algorithm main memory allocation and recycling. The operating system to achieve operation.
  3. 所属分类:系统编程

    • 发布日期:2024-05-12
    • 文件大小:210944
    • 提供者:路一
  1. moni

    0下载:
  2. 实现模拟分页式虚拟存储管理中地址转换和缺页中断,有试验报告。程序中假定主存的每块长度为128字节;现有一个共七页的作业,将第0页到第3页中的内容装入主存中,其余三页未装入主存;-Analog paging virtual memory management, address translation and page fault, there are test report. The program assumes that the le
  3. 所属分类:操作系统开发

    • 发布日期:2024-05-12
    • 文件大小:56320
    • 提供者:jarly
  1. zhucunfenpeiyuhuishou

    0下载:
  2. 操作系统中主存分配与回收,包括最佳适应算法,首次适应和循环首次适应-In the operating system main memory allocation and recovery, including the best-fit algorithm, for the first time cycle for the first time to adapt and adjust
  3. 所属分类:操作系统开发

    • 发布日期:2024-05-12
    • 文件大小:107520
    • 提供者:huang
  1. LRU

    0下载:
  2. 1、产生一个需要访问的指令地址流,它是一系列需要访问的指令的地址。为不失一般性,你可以适当地(用人工指定地方法或用随机数产生器)生成这个序列,使得 50%的指令是顺序执行的。25%的指令均匀地散布在前地址部分,25%的地址是均匀地散布在后地址部分。   2、指定合适的页面尺寸(例如以 1K或2K为1页);   3、指定内存页表的最大长度,并对页表进行初始化; 4、每访问一个地址时,首先要计算该地址所在的页的页号,然后查
  3. 所属分类:其他小程序

    • 发布日期:2024-05-12
    • 文件大小:1024
    • 提供者:黄俊
  1. DynamicMem

    0下载:
  2. 动态分区方式主存的分配和回收程序,在动态分区管理方式下采用不同的分配算法实现主存分配和实现主存回收-It is a project that itimate memory distribute and restore
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-12
    • 文件大小:12288
    • 提供者:tom
  1. OSshiyan

    0下载:
  2. 实验一 题目 进程调度 实验二 题目 作业调度 实验三(综合性) 主存空间的分配与回收-Experiment 1 Experiment 2 the subject title process scheduling job scheduling experiment 3 (integrated) main memory space allocation and recycling
  3. 所属分类:进程与线程

    • 发布日期:2024-05-12
    • 文件大小:128000
    • 提供者:yq
« 1 2 3 4 5 6 78 9 10 11 12 13 »

源码中国 www.ymcn.org