Welcome![Sign In][Sign Up]
Location:
Search - cpu time

Search list

[OS program不错的进程调度

Description: 进程调度算法:采用最高优先数优先的调度算法,即把处理机分配给优先数最高的进程。 每个进程由一个进程控制块(PCB)表示。进程控制块可以包含如下信息:进程名、优先数、需要运行的时间、已占用的CPU时间、进程状态等等。 进程的优先数及所需要运行的时间可以事先人为地指定(也可由随机数产生)。 进程的运行时间以时间片为单位进行计算。 每个进程的状态可以是就绪W(Wait),运行R(Run),或完成F(Finish)三种状态之一。-process Scheduling Algorithm : The highest priority of several priority scheduling algorithm, which is allocated to the processor the highest priority in the process. Every process from a process control block (PCB) said. Process control block may contain the following information : process, and priority number, the need to run time, has taken the CPU time, the process of the state and so on. Several priorities for the process of what needs to run and the time prior to artificially designated (also be random number generator). The process of running time to time-unit calculations. The state of each process can be completed W (Wait), running R (Run), or completion of F (Finish), one of three state.
Platform: | Size: 7168 | Author: | Hits:

[OS programCPU监视器

Description: 实时提供CPU的使用情况,并附有曲线图和柱状图。在托盘图标中动态显示使用率。-provide real-time CPU usage, together with curves and histograms. The tray icon dynamic display usage.
Platform: | Size: 103424 | Author: pbt | Hits:

[CSharp作业调度11

Description: 由于在单道批处理系统中,作业一投入运行,它就占有计算机的一切资源直到作业完成为止,因此调度作业时不必考虑它所需要的资源是否得到满足,它所占用的CPU时限等因素。 每个作业由一个作业控制块JCB表示,JCB包括如下信息:作业名、提交时刻、所需运行时间、所需资源、作业状态、链指针等。 在程序开始时对用户提交的作业按作业调度算法排列,用链表形式存储,这里分别采用先来先服务、短作业、响应比高者优先调度算法对作业进行调度。这里为了操作者的方便,每个作业无论所需运行时间多少,都是每敲一次键盘就执行完一个作业。每个作业完成后打印作业的开始运行时刻,完成时刻,周转时间和带权周转时间,一组作业完成后打印这组作业的平均周转时间,带权周转时间。所以要在运行时对运行时间进行记录,这里设置几个全局变量:T时间量; ttime总周转时间; trtime总的带权周转时间。-Road due to the single-batch system, and put into operation an operation, it has all the resources of the computer until the operation is completed, the dispatch operation when it's not necessary to consider whether the resources needed to be met, it occupied by the CPU time and other factors. Each operation by operating a control block JCB, JCB include the following information : operations, and submitted moment, the run time, the resources required, operational state, chain pointer. At the beginning of the procedure to users of operations by scheduling algorithm with using forms Chain store, were used here first-come first-serve, short operations, response is high priority scheduling algorithm scheduling of the operation. Here in order to facilitate the operation of each operation ir
Platform: | Size: 3072 | Author: 江大 | Hits:

[Button control实验一 进程、线程的控制

Description: 设计一个有 N个进程共行的进程调度程序。 进程调度算法:采用最高优先数优先的调度算法(即把处理机分配给优先数最高的进程)和时间片轮转调度算法。   每个进程由一个进程控制块( PCB)表示。进程控制块可以包含如下信息:进程名、优先数、到达时间、需要运行时间、已用CPU时间、进程状态等等。 -design is a process of a total of N line in the process scheduler. Process Scheduling Algorithm : The number of the highest priority priority scheduling algorithm (that is, processors allocated to the highest priority in the process) and time-scheduling algorithm postings. Every process from a process control block (PCB) said. Process control block may contain the following information : process, and priority number, the arrival time, the running time, CPU time used, the process of the state and so on.
Platform: | Size: 13312 | Author: aaa | Hits:

[Process-Thread进程调度算法实验报告

Description: 关于进程的调度算法 实验设计: (1)设计一个有N个进程共行的进程调度程序。每个进程由一个进程控制块 PCB表示。进程控制块包括以下信息:进程名,进程优先数,进程需要运行的时间,占用CPU的时间以及进程的状态等。 (2)本调度程序用优先数调度算法。 (3)编写程序并调试运行。 -on the process of scheduling algorithm Experimental Design : (1) design a process of a total of N line in the process scheduler. Every process from a process control block PCB said. Process control block include the following information : process, and several priority process, the process needs to run the time, CPU time and the process of status. (2) The scheduler with a few priority scheduling algorithm. (3) Prepare and commissioning procedures.
Platform: | Size: 6144 | Author: 赵新新 | Hits:

[OtherCpu-Z1.30

Description: 非常方便好用机器测试工具,在买电脑的时候(特别是笔记本)记住带上它,以防受骗-very convenient and handy tool for testing machine, buy a computer in the time (especially laptops) put remember it, falling prey
Platform: | Size: 515072 | Author: 反而 | Hits:

[Windows CEiTaskNetMgr_src

Description: Displays CPU time usage, the list of processes (can be terminated) and the task which are running (can be close or switch to). Plus a little net traffic monitor and a disk status report. -Displays CPU time usage. the list of processes (can be terminated) and th e task which are running (can be close or switch t o). Plus a little net traffic monitor and a disk s tatus report.
Platform: | Size: 33792 | Author: 李胜霆 | Hits:

[OS programTimer_Win32

Description: Classes for Time measurement on Win32. Useful as they work in lightweight fashion (by using directly performance counters and asm RDTSC x86 instruction) to get clock-precise CPU time measurement
Platform: | Size: 3072 | Author: Xavier De Galia | Hits:

[DocumentsJob-Scheduling

Description: 一、目的要求   用高级语言编写和调试一个或多个作业调度的模拟程序,以加深对作业调度算法的理解。 二、例题:为单道批处理系统设计一个作业调度程序。   由于在单道批处理系统中,作业一投入运行,它就占有计算机的一切资源直到作业完成为止,因此调度作业时不必考虑它所需要的资源是否得到满足,它所占用的 CPU时限等因素。   作业调度算法:采用先来先服务(FCFS)调度算法,即按作业提交的先后次序进行调度。总是首先调度在系统中等待时间最长的作业。 -First, the purpose of high-level language requires writing and debugging of one or more job scheduling simulation procedures in order to deepen their understanding of job scheduling algorithms. B, Example: In order to single-channel system, the design of a batch job scheduling procedures. Road as a result of a single batch system, the operation of a put into operation, it would occupy all the resources until the computer s operation has been completed, so no need to consider when scheduling operation of the resources it needs are met, it is occupied by factors such as CPU time limit. Scheduling Algorithm: The First Come First Served (FCFS) scheduling algorithm, that is, according to the order of operations submitted for scheduling. Scheduling is always first in the system waiting for the longest operations.
Platform: | Size: 73728 | Author: Anson | Hits:

[SCMProcessScheduling

Description: 一、目的要求   用高级语言编写和调试一个进程调度程序,以加深对进程的概念及进程调度算法的理解。 二、例题: 设计一个有 N个进程共行的进程调度程序。   进程调度算法:采用最高优先数优先的调度算法(即把处理机分配给优先数最高的进程)和先来先服务算法。   每个进程有一个进程控制块( PCB)表示。进程控制块可以包含如下信息:进程名、优先数、到达时间、需要运行时间、已用CPU时间、进程状态等等。 -First, the purpose of high-level language requires a process of writing and debugging scheduling procedures in order to deepen their understanding of the process of the concept and understanding of the process of scheduling algorithm. Second, Example: Design of a total of N months the process of the process of scheduling procedures. The process of scheduling algorithm: The number of priority of the highest priority scheduling algorithm (that is, the number of processors allocated to the highest priority to the process) and first-come first-serve algorithm. Each process is a process control block (PCB) said. Process control block can contain the following information: the process name, priority number, arrival time, need to run the time, has spent CPU time, the process of state and so on.
Platform: | Size: 74752 | Author: Anson | Hits:

[OS Developdiaodu

Description: ○1 设计进程进程控制块PCB表结构,分别适用于优先数调度算法和循环轮转调度算法。 PCB结构通常包括以下信息:进程名,进程优先数(或轮转时间片),进程所占用的CPU时间,进程的状态,当前队列指针等。根据调度算法的不同,PCB结构的内容可以作适当的增删。 ○2 建立进程就绪队列。对两种不同算法编制入链子程序。 ○3 编制两种进程调度算法:1)优先度调度;2)循环轮转调度。 -○ design process 1 process control block PCB table structure, namely the number applies to the priority scheduling algorithm and the cycle of rotation scheduling algorithm. PCB structure typically includes the following information: process name, process priority number (or the rotation time slice), the process of occupying CPU time, the process of the state, such as the current queue pointer. According to the different scheduling algorithm, PCB content of the structure can be used for appropriate additions and deletions. ○ 2 to establish the process ready queue. Algorithm on two different procedures for the preparation into the chain. ○ 3 the process of the preparation of two scheduling algorithms: 1) priority scheduling 2) Round-Robin scheduling cycle.
Platform: | Size: 118784 | Author: 狄影 | Hits:

[matlabtime

Description: 用matlab编写的用于测试cpu时间的小程序,简单管用-Matlab prepared using cpu time for testing of small procedures, a simple effective
Platform: | Size: 2048 | Author: ye | Hits:

[Process-Threadgege

Description: 进程调度算法:采用最高优先数优先的调度算法(即把处理机分配给优先数最高的进程)和先来先服务算法。 每个进程有一个进程控制块( PCB)表示。进程控制块可以包含如下信息:进程名、优先数、到达时间、需要运行时间、已用CPU时间、进程状态等等。   进程优先数及需要的运行时间可以事先人为地指定(也可以由随机数产生)。进程的到达时间为进程输入的时间。进程的运行时间以时间片为单位进行计算。  -The process of scheduling algorithms: the use of the highest priority number of priority scheduling algorithm (ie the number of processors allocated to the highest priority process) and first-come first-serve algorithm. Each process has a process control block (PCB) said. Process control block can contain the following information: process name, priority number, arrival time, the need for run-time, has spent CPU time, the process of state and so on. Process priority number and needs of the running time can be artificially designated in advance (you can also by the random number generator). Process input arrival time for the process time. The process of running time to time slice is calculated as a unit.
Platform: | Size: 1024 | Author: 110 | Hits:

[SCMtime

Description: FIQ有FIQ_PWM、FIQ_TMA和FIQ_TMB三个中断源,当定时器A或B计满溢出时产生中断请求信号TA_TIMEOUT_INT或TA_TIMEOUT_INT,CPU响应后进入中断执行相应的子程序控制二极管发光。A口的低四位接LED灯,B口的低四位接LED灯.-FIQ has FIQ_PWM, FIQ_TMA and FIQ_TMB three interrupt sources, when the timer A or B when the expiration overflow interrupt request signal TA_TIMEOUT_INT or TA_TIMEOUT_INT, CPU response after interruption of the implementation of the corresponding subprogram control light-emitting diodes. A low population of four LED lights then, B I take the low four LED lights.
Platform: | Size: 2048 | Author: hhxxttxs | Hits:

[OS programShowUseage

Description: 简直和WinXP系统自带的一模一样,功能和界面都一样,只是开发语言不同,系统的是用C写的,这是用DELPHI写的 此程序主要实现取系统的应用程序列表、取系统的所有进程的相关信息(映像名称,PID,CPU时间,内存使用)、实时取CPU的得用率并以波浪线来描绘、实时取内存的使用记录,并以波浪线来描绘。同时也实现了,结束任务,新建任务,及切换至等功能。“选项菜单”只实现了“总是最前”,“查看菜单”只实现了“更新速度”。主要没有实现的功能,是取各个进程的CPU利用率和在系统托盘显示CPU线的效果。 程序中使用了几个网友作品的算法:如画CPU使用率的背景的效果,取CPU利用率的算法等都非本人原创的(作了部分修正)。 -WinXP system and it comes with exactly the same functionality and interface are the same, but different development language, the system is written in C, it is written in DELPHI The main implementation of this process the application check list system, check system for all process-related information (Image Name, PID, CPU time, memory usage), real-time access to use the rate of the CPU and to describe the wave line, real-time memory access the use of records, and to describe the wave line. Implementation at the same time, the end of mission, new mission, and to switch to other functions. "Options menu" only to realize the "always best before", "View menu" only achieve the "update speed." Did not achieve the main function is to check the CPU utilization of all process and in the system tray shows the effect of CPU line. Procedures used in some users of the algorithm works: CPU utilization rate of the background of picturesque effect, the algorithm check CPU utilization, I have non
Platform: | Size: 333824 | Author: 法激 | Hits:

[OtherClockfrequency

Description: 使用CPU时间戳进行高精度计时,利用Rdtsc指令计算CPU的时钟频率-High-precision time stamp for the use of CPU time, using the Rdtsc Instruction Computing CPU clock frequency
Platform: | Size: 2048 | Author: 曾凡麟 | Hits:

[OS programCPU

Description: 一个delphi开发的读CPU温度的程序-A delphi development of CPU time the process temperature
Platform: | Size: 475136 | Author: 刘军 | Hits:

[SCMtime-exposure

Description: 1、用CPU内部定时器查询方式计时,实现每一秒钟输出状态发生一次反转。-1, by way of CPU time the internal timer query and achieve the status of each occurrence of a second output inversion.
Platform: | Size: 49152 | Author: 冰鸽 | Hits:

[Linux-Unixcpu.c.tar

Description: linux下基于gtk编写的程序,绿色曲线图实时显示cpu利用率-linux prepared under the gtk-based program, green curves show the cpu utilization of real-time
Platform: | Size: 2048 | Author: xulei | Hits:

[OS programcpu

Description: 动态的改变windows任务管理器的cpu的占用率,算法是改变cpu工作和sleep的时间比例-Dynamic changes in windows task manager cpu occupancy rate, the algorithm is to change the cpu time for the proportion of work and sleep
Platform: | Size: 1024 | Author: 聪林 | Hits:
« 12 3 4 5 6 7 8 9 10 ... 41 »

CodeBus www.codebus.net