Windows进程管理工具设计与实现要点_图文 .pdf
希望能帮到您!欢迎下载
Windows进程管理工具设计与实现
摘要
Windows是操作系统中使用最广泛,使用人数最多的系统,它自身带有一个任务管理
器,可以对系统中的进程,任务进行管理,本课题主要模仿Windows的任务管理器,对系
统中的程序、进程进行控制。在程序的设计过程中,需要通过VC++调用一些WindowsAPI
函数,从而获得程序、进程、线程模块,以及系统信息资源。最后在WindowsXP系统上进
行测试,通过开发,最终程序实现了进程管理的基本功能,能够正确实现对系统当前进程和
系统资源的控制。
关键词:管理器;线程;进程;VC++
可编辑
希望能帮到您!欢迎下载
TheDesignandImplementationoftheProcessesManagement
ToolforWindows
Abstract
Windowsisthemostwidelyusedintheoperatingsystem,system,bythelargest
numberofitsownwithataskmanager,isabletoprocessinthesystem,manage
tasks,thistopicmainlyimitatetheWindowstaskmanager,thesystemofprocedures
andprocesscontrol.Intheprocessofprogramdesign,needsomeWindowsAPI
functioncalledbyvc++,therebygainingprocedure,process,threadmodule,and
systeminformationresources.FinallytestedonWindowsXPsystem,throughthe
development,finallyapplicationimplementsthebasicfunctionofprocess
management,correctlyimplementcontrolofthesystemtothecurrentprocessand
systemresources.
Keywords:TaskManager;Threads;Process;VC++
可编辑
希望能帮到您!欢迎下载
目录
1绪论.1
1.1研究背景.1
1.2研究意义与目的.1
1.3课题的研究方法.1
1.4相关知识介绍.2
1.4.1进程与线程
1.4.2VisualC++介绍
2主要功能及设计思路.