搜索资源列表
service1
- 一个可以管理电脑服务的程序,启动,停止,查询服务等功能-a computer can manage the process of service to start, stop, information service and other functions
VxWorksBSPexample
- VxWorksBSPexample,很好的启动学习过程。-VxWorksBSPexample a good start learning process.
MenuetOS
- 首先,很感谢你使用这一套操作系统。这套MenuetOS操作系统是由英国人Ville Turjanmaa从2000年就开始编写了。如果你懂一点汇编和操作系统的知识的话,请多多联系。操作系统安装办法: 1:如果你是win98,进入纯DOS系统,如果你是win2000,请用其他磁盘启动系统。然后执行msetup.exe程序,这时,程序要求你插入一张格式化后的磁盘。按要求操作即可。 2:系统安装完后,设置系统BIOS为磁盘启动。用你刚刚装好系统的磁盘启动即可。 3:注意:系统的显卡设置要符合你的显卡和显
ucore-lab1
- Ucore是一个很小的适于学习的操作系统,此“麻雀”包含虚存管理、进程管理、处理器调度、同步互斥、进程间通信、文件系统等主要内核功能,总的内核代码量(C+asm)不会超过5K行。充分体现了“小而全”的指导思想。 这是ucore的实验1:系统软件启动过程。实验目的:操作系统是一个软件,也需要通过某种机制加载并运行它。在这里我们将通过另外一个更加简单的软件-bootloader 来完成这些工作。为此,我们需要完成一个能够切换到x86 的保护模式并显示字符的bootloader,为将来启动操作系统
os
- 操作系统引导探究.rar讲解操作系统启动全过程,详细并有代码.-Guide into the operating system. Rar on the operating system to start the whole process in detail and have the code.
DesignandImplementationofJobschedulingsimulationpr
- 先来先服务(FCFS)、短者优先(SJF)、高优先权优先(FPF)是操作系统作业调度的三种基本调度算法。本文用程序模拟这三种调度算法的过程。通过对各个进程在调度过程中参数(开始时间、完成时间、平均周转时间和平均带权时间等)的变化的记录,加深对三种调度过程的认识。-First-come, first-served (FCFS), short-preferred (SJF), a high priority priority (FPF) is the operating system, job sc
OSboot
- 操作系统引导探究 很详细的说明了计算机怎样从加电开始,如何引导,知道操作系统运行起来的过程。-Operating system, a very detailed descr iption and guide to explore how the computer from the power-on start, how to guide, to know the operating system up and running process.
bootloader
- 本篇文章将以开发中的 pyos 系统引导程序为例,pyos 是一个正在开发中的实验型操作 系统,它并不打算以目前任何一种运行中的操作系统为模式,而只想通过自己编写一个从头 到尾的操作系统来学习知识,积累技术-This article will guide the development process in the case pyos system, pyos is being developed in the experimental operating system, it does
WinRAR-ZIP-
- 本程序显示了创建子进程的基本框架,该程序只是再一次的启动自身,显示它的系统进程ID和它在进程列表中的位置。-This program shows the basic framework to create a child process, it is only the start itself again, the system displays its process ID and its position in the process list.
1
- 创建进程 本实验显示了创建子进程的基本框架。程序只是再一次地启动自身,并显示它的系统进程ID和它在进程列表中的位置。 步骤1:编译并执行2-1.exe程序, 完成下列问题。 程序2-1是一个简单的使用CreateProcess() API函数的例子。首先形成简单的命令行,提供当前的EXE文件的指定文件名和代表生成克隆进程的号码。大多数参数都可取缺省值,但是创建标志参数使用了:CREATE_NEW_CONSOLE 标志,指示新进程分配它自己的控制台,使得运行示例程序时,在任务栏上产生许
122
- 本程序显示了创建子进程的基本框架。该程序只是再一次地启动自身,显示它的系统进程ID和它在进程列表中的位置。-This program shows to create the basic framework of the child process. This procedure is once again to start their own, shows the system process ID and it in the process that the position of the l
Homework_mm
- 实现三个功能 1:打印所有当前进程占用的内存的起始地址+结束地址 2:输入虚拟地址,打印物理地址 3:改变一个变量的值(通过虚拟地址及物理地址)-Write a module that is called mtest • When module loaded, module will create a proc fs entry /proc/mtest • /proc/mtest will accept 3 kind of input И
FCFS
- 操作系统-先进先出进程调度算法,输入的开始时间默认从0开始,且顺序增加。-Operating system- first in, first out of the process of scheduling algorithm, the start time of the input default to 0 and the increase of the order.
moontest20120528.tar.bz2
- 这份源码是我写的一部分的操作系统内核,主要功能是从系统启动到运行第一个进程开始,下面要写设备驱动了,由于没有必要的信息还没有完成。在FreeBSD下编译。-This source code I wrote part of the operating system kernel, the main function is to start from the system to run the first of the beginning of the process, the following
FCFS-system
- FCFS先来先服务算法完成进程调度,包括到达时间,开始时间,完成时间,占用CPU时间。-FCFS first come first serve to complete the process of scheduling algorithms, including arrival time, start time, finish time, CPU time.
1
- (1)假定系统有5个进程,每个进程用一个PCB来代表。PCB的结构为: • 进程名——如P1~P5。 • 指针——按优先数的大小把5个进程连成队列,用指针指出下一个进程PCB的首地址。 • 要求运行时间——假设进程需要运行的单位时间数。 • 优先数——赋予进程的优先数,调度时总是选取优先数大的进程先执行。 • 状态——假设两种状态:就绪和结束,用R表示就绪,用E表示结束。初始状态都为就绪状态。 (2) 开始运行之前,为
UEFI_Programming
- 《UEFI原理与编程》以实战为导向,面向UEFI的使用者和开发者,首先细致地介绍了UEFI的系统组成、启动过程、优点,以及各种系统中的开发环境搭建;然后深入剖析了UEFI的工作原理,包括UEFI工程模块、各种协议、基础服务、事件、硬盘和文件系统等内容;最后讲解了UEFI的开发,涉及UEFI服务的开发、UEFI驱动的开发、多任务应用的开发、网络应用的开发、GUI应用的开发,以及如何用C++和C标准库开发UEFI应用,等等。-UEFI principles and programming orien