搜索资源列表
ARM_00_OS
- 看看ARM菜鸟在ARM7上写的操作系统——ARM圈圈操作系统 最近在ADuC7027上写了一个ARM_00_OS,头都写晕了,发上来给大家一起来看看。 任务按优先级调度,如果处于就绪态且优先级最高的任务有两个或更多,则按时间片轮循调度。 支持任务创建、任务删除、内存分配、简单的消息、简单的设备管理、CPU及内存等使用统计等功能。 任务可处于ARM模式或THUMB模式,在创建任务时,要指定任务所处于的模式。 从这里下载整个文件包:http
osapi-2.0.tar
- osapi 2.0 操作系统抽象层 \"系统抽象层\"使得你可以实现一种对于RTOS、CPU和所运行产品物理特性完全透明的软件。使用这种公共通用接口,高层软件在并不了解底层硬件特性的情况下也可以访问底层服务,比如对非易失性内存的读写。 -osapi 2.0 Operating System Abstraction Layer "system abstraction layer" allows you to achieve an RTO S, CPU and the ope
内存静态分配
- 内存静态分配: 程序还有一些错误,益出处理不知道怎么加入。此程序开始不是我写的的,我在别人的基础上理解并改动了一些。实验课已经结束了,没时间在做了,以后有机会再改。-static memory allocation : there are some procedural error, derived from processing do not know how to join. This is not the beginning of the proceedings I write, I ot
qingqiu
- 可以实现内存管理,采用先来先服务算法,在淘汰一页时,只将该页在页表中修改状态位。而不再判断它是否被改写过,也不将它写回到辅存。-Memory management can be achieved using a first-come first-serve algorithm, in one out of only the page in the page table modify status bits. Rather than to judge whether it had been rew
Linux011-Mem-YuanYi
- Linux0.11 下的内存管理 作者:袁镱 一篇某牛人写的关于linux 0.11 下内存管理的文章-Memory management under Linux0.11 Authors: Yi-Yuan Niu a person to write a linux 0.11 on the memory management under article
userkernelspace
- A user-space device driver can do many of the things that kernel drivers can t, such as perform a long-running computation, block while waiting for an event, or read files from the file system. Unlike kernel drivers, a user-space device driver can us
os
- CSharp写的一个超微软操作系统,包括进程管理、内存管理等-CSharp write a superset of Microsoft operating systems, including process management, memory management, etc.
WhatEveryProgrammerShouldKnowAboutMemory
- What Every Programmer Should Know About Memory - 闡述程式設計人員如果知道memory的架構,才能寫出好的程式.-What Every Programmer Should Know About Memory- described programmers If you know the memory structure, in order to write good programs.
Memory_allocation_experiment_report
- 内存分配方法的实验报告 是我自己写的 用三种方法实现的-Experimental Report of memory allocation method is to write my own implementation of three methods
Test3
- 系统内存管理源代码,自己写了一上午完成的。可以实现内存的自动分配,模拟操作系统的实际操作-Memory management system source code, to write the morning complete. Automatic allocation of memory can simulate the actual operation of the operating system
dongtaifenqu
- 模拟动态分区存储管理方式的主存分配与回收。具体包括: (1)确定主存空间分配表(空闲分区、已分配分区); (2)采用一种分配处理发(BF、WF、或FF等)完成主存空间分配和回收; (3)编写主函数对所有工作进行测试。 -Simulate dynamic partition management for main memory storage allocation and recovery. These include: (1) to determine the main memo
run
- 自己动手写操作系统,小练习包括fifo.c\fork.c\popen.c等,保护模式,超过1M内存管理模式,等代码,生成的中间文件等,适合初学者参考!-Do-it-yourself write operation system, small exercises include fifo. C \ fork. C \ popen. C, and other protection mode, more than 1 M memory management mode, and the code, ge
Memory-Allocation
- 1.内存的分配和回收是存储器管理的关键。理解和掌握常用的内存分配算法的内容和原理。 2.通过本实验,模拟实现可变式分区分配算法:首次适应算法、最佳适应算法、最坏适应算法等。尝试编写一个简单的动态分区存储器管理模拟系统。-1the distribution and recovery of memory is a memory management key. Understanding and mastering the memory allocation algorithm content a
czxt
- 设计一个请求页式存储管理方案。并编写模拟程序实现之。 产生一个需要访问的指令地址流。它是一系列需要访问的指令的地址。为不失一般性,你可以适当地(用人工指定地方法或用随机数产生器)生成这个序列,使得 50%的指令是顺序执行的。25%的指令均匀地散布在前地址部分,25%的地址是均匀地散布在后地址部分。 为简单起见。页面淘汰算法采用 FIFO页面淘汰算法,并且在淘汰一页时,只将该页在页表中抹去。而不再判断它是否被改写过,也不将它写回到辅存。 -The design of a reques
cunshuqi
- 存储器管理实验,操作系统代码.可以直接运行,自己写的-Memory management experiments, the operating system code can be run directly, write your own
vbConsole
- 同标准的Windows程序相比,控制台程序具有界面简单、占内存少、生成的可执行文件小的优点 -Than with standard Windows programs, console program has a simple interface, accounting for less memory, and the advantages of a small executable file generated this document will be required to create a
CM
- 编写程序完成动态分区存储管理方式的主存分配回收的实现。 完成: 验证最优适应算法; 实验具体包括:首先确定主存空间分配表;然后采用最优适应算法完成主存空间的分配和回收;最后编写主函数对所做工作进行测试。 -Write a program to complete dynamic partitioning storage management way of the realization of the distribution of main memory recovery.
subject_3
- 编写一个请求页式存储管理模拟程序,通过对页面置换过程的模拟,加深对请求页式存储管理方式基本原理及实现过程的理解。 要求: 1. 从键盘输入页面访问序列及分配给进程的内存块数; 2. 分别采用OPT、FIFO和LRU算法进行页面置换(说明:对于OPT算法,在有多个页面可选的情况下,先淘汰较早进入的页面)。 3. 计算缺页次数及缺页率。 测试用例格式如下: 输入: 算法(1 OPT,2 FIFO,3 LRU) 内存块
自己动手写嵌入式操作系统_蓝枫叶_pdf
- 本书以作者亲自在PC上开发嵌入式操作系统“HelloChina”的全过程为主线,详细地叙述自己动手写嵌入式操作系统所需的各方面知识,如加载和初始化、Shell、线程的实现、内存管理机制、互斥和同步机制及中断和定时机制的实现,以及设备驱动程序管理框架,应用编程接口等。(The whole process of the book by the author personally developed embedded operating system "HelloChina" in
os exercise3
- 为字符设备编写设备驱动程序,实现简单的消息传递方式。 内核维护一个消息列表。 为了限制内存使用,我们对每条消息施加4KB的限制,并且还限制所有消息的大小,最初为2MB。(Write a device driver for a character device which implements a simple way of message passing. The kernel maintains a list of messages. To limit memory usage, we imp