搜索资源列表
200qty5129181447900
- 共管理包含计算器、万年历、通讯簿、单位转算、邮编区号,个人管理包含计划、公文、档案、分析、资金管理,综合管理包含通告、计划、档案、商品、工资,去处管理包含厂商、客户、采购、销售、售后管理,分析管理包含采购、销售、利润、售后分析及其-managing contains calculators, hefty almanac, address book, turn to count, Zip code, including personal management, communications, ar
进程调度算法实验报告
- 关于进程的调度算法 实验设计: (1)设计一个有N个进程共行的进程调度程序。每个进程由一个进程控制块 PCB表示。进程控制块包括以下信息:进程名,进程优先数,进程需要运行的时间,占用CPU的时间以及进程的状态等。 (2)本调度程序用优先数调度算法。 (3)编写程序并调试运行。 -on the process of scheduling algorithm Experimental Design : (1) design a process of a total of
myThreadDemo
- 源码包括: 1.单任务的进度控制 2.多任务的显示进度,并可取消,就像拷贝文件一样-source include : 1. Single-task control the progress of two. Multi-tasking show progress can be canceled, like the same copy paper
MIFAREMFRC500
- philips RC500底层函数库包括以下文件-Philips RC500 underlying functions include the following documents
OpenMPandWin32ThreadExample
- Intel Proton 8.0 build instructions: Change \\Include, \\Lib, and \\Bin paths in omp.bat to your actual ones. Run omp.bat to build omp_smp.exe Microsoft: Use MS Visual Studio 2005 beta 1 compiler and vcomp.dll Compiler options may di
KillApp
- VC中终止其他进程的引用文件,用Include应用后就可以直接调用。
process
- #include <string.h> #include <fstream.h> #include <stdio.h> #include <stdlib.h> #define FINISH 0 //完成状态 #define RUNNING 1 //运行状态 #define READY 2 //就绪状态 #define WAITIO 3 //io等待状态 #define WAITREAD 4//读写等待状态
ReaderAndWriter
- 在Windows 2000/XP/2003环境下,创建一个包含N个线程的控制台进程。用这n个线程来表示n个读者或写者。每个线程按相应测试数据文件(后面有介绍)的要求进行读写操作。用信号量机制分别实现读者优先和写者优先的读者一写者问题。-Windows 2000/XP/2003 environment, the creation of an N threads include the console process. Use of these n threads to express n read
StressMark压力测试程序
- 简介 StressMark测试软件是一个使用Visual C++编写的,开放源代码的测试工具,可以完成服务程序及重要算法的功能和性能测试,其最主要的功能是模拟多线程或多客户端的自动化压力测试。 我们可以利用StressMark软件完成的典型测试任务包括: 1. 在多线程环境下测试一个软件模块、一段关键算法是否可以正确运行,即代码是否是多线程安全的。 2. 测试一个软件模块、一-brief StressMark test software is a Visual C prepared in the
BCBMultiThreaded.rar
- Borland C++ Builder BCB的多线程例子 包括创建线程 运行线程等 简单易懂 exe文件可直接运行 看到效果 ,BCB examples include the multi-threaded thread running threads, such as the creation of easy-to-read document can be directly run the exe to see the effect of
process
- 简单轮转法进程调度 #include "stdio.h" #define getpch(type) (type*)malloc(sizeof(type)) struct pcb { /* 定义进程控制块PCB */ char name[10] char state /*状态 */ int ntime /*需要的运行时间 */ int rtime /*已执行的时间 */ struct pcb* link /*下一个进程控制块的地址 */
cxtq
- 程序提权,全都封好了,直接调用AquirePrivileges()即可。 如果非mfc去掉#include <stdafx.h>即可。-here is the app
done
- 本系统的同步机构采用信号量上的P、V操作的机制;控制机构包括: (1)阻塞和唤醒操作; (2)时间片中断处理程序模拟时间片中断; (3)进程调度程序负责为各进程分配处理机。 系统中涉及了3个并发进程。它们之间的关系是: (1) 3个进程需要互斥使用临界资源S2。 (2)进程1和进程2又需互斥使用临界资源S1. 本系统在运行过程中随机打印出各进程的状态变换过程,系统的调度过程及公共变量的变化情况。-Synchronization of the sy
lin
- 进程调度时进程管理的主要内容之一,通过设计,编制,调试一个简单的进程调度模拟系统,对进程调度,进程运行状态变换加深理解和掌握。模拟计算机操作系统的进程调度,建立进程控制块PCB,要包含有关进程的描述信息,控制信息以及资源信息.模拟系统根据PCB感知进程的存在和通过PCB中所包含的各项变量的变化,掌握进程所处的状态以达到控制进程活动的目的.要实现进程的状态及其转换,进程的创建与撤消,进程的阻塞与唤醒-Process when the process of scheduling one of the
Producer_Cosumer
- 实现生产者消费者功能~~~ 是操作系统的的课程设计~~ 包括了演示功能-Function of the realization of the producer consumer operating system ~ ~ ~ is the ~ ~ of course design features include a demonstration
mult_progress
- 多线程程序实例,里面包含文件:Threads.cls Module1.bas 等,主窗体中用简单的代码演示多线程。-Examples of multi-threaded program, which include file: Threads.cls Module1.bas and so on, the main form with a simple demonstration of multi-threaded code.
MultithreadingApplicationsinWin32
- 在《Win32多线程程序设计》这本书中,Jim Beveridge和Robert Wiener告诉你什么时机、什么地点、什么方法可以使用多线程。 本书主题包括: ● Internet开发范例,包括ISAPI和WinSock。 ● 如何在服务器中使用线程和overlapped I/O。 ● 如何在多线程环境中使用C runtime函数库和MFC. 以C和C++写成的各个范例程序。 UNIX环境比较。让UNIX下的开发人员能转移到Win32-In the " Win
process
- 模拟任务管理器程序,包含进程的创建,挂起,杀死等。改程序的功能还有对进程的调度功能-Analog Task Manager program,include create a process,suspend,kill and so on.The program also has function that can dispatch process
thread2_threadCommnicate
- windows 线程的三种通信方式,包括发消息,共享全局变量等。-three ways of communications between windows thread,include sendmessage ,share globals etc.
showallprocess
- 任务管理器进程的管理 主要包括:获取进程和终止进程-Task Manager process management include: access to process and terminate the process