搜索资源列表
simpleThreadPool
- 简单线程池的实现方法,包含一个主控线程池类ThreadPool和一个工作线程WorkThread-simple thread pool method, including a master class ThreadPool thread pool, and a work-threaded WorkThread
NT下进程隐藏
- 在NT环境下隐藏进程,也就是说在用户不知情的条件下,执行自己的代码的方法有很多种,比如说使用注 册表插入DLL,使用Windows挂钩等等。其中比较有代表性的是Jeffrey Richer在《Windows核心编程》中 介绍的LoadLibrary方法和罗云彬在《Windows环境下32位汇编语言程序设计》中介绍的方法。两种方法的 共同特点是:都采用远程线程,让自己的代码作为宿主进程的线程在宿主进程的地址空间中执行,从而达 到隐藏的目的。相比较而言,Richer的方法由于可以使用c/c++等高级
endzippro
- 功能介绍:有些软件在运行中要将某些文件压缩成压缩文件。自己写压缩过程未免太麻烦了, 虽然有很多免费的源代码类可以使用,还要看代码的使用方式,一个不小心就不一定很正常了。 我的做法是调用现有的压缩文件来完成压缩功能。用等待进程结束的方法实现压缩。 完成后再作后面的其他工作。 本程序旨在演示启动和等待进程结束的方式调用其他程序的方法。 -functional presentations : Some software in the operation of cert
HideFunc
- 直接调用该头文件中的 YHideProcess()就可以实现该进程在系统中的隐藏!而且此方法不是通过传统的线程注射方法,而是更改系统内存,经过在2K XP下的调试:)-called directly to the head of the paper YHideProcess () can be achieved in the process of hidden system! But this method is not through the traditional method of inj
MemoryFileMap
- 进程间的通讯技术之一——内存文件映射法。-inter-process communication technology, one -- memory document mapping method.
进程调度模拟源程序
- 进程调度问题,调度算法有优先数法和时间片轮法,速度调节可以自己设定-process of scheduling problems, priority scheduling algorithm method and the time-wheel, speed regulation can create
pthreadforlinux
- linux,驱动设计教程。linux多线程程序设计方法介绍。-linux, drive design handbook. Linux multithreaded programming method introduced.
ShutdownComputer
- 一个用编程方法使计算机休眠的程序,可以加在计划任务里面达到定时休眠的功能。-a programming method used to make computer dormancy procedures can be added to the planned tasks to achieve timing dormant inside the function.
hanoie
- 很好的一个汉诺塔问题的解法,方法非常灵活有效-good HANOR a solution to the problem, the method is very flexible and effective
course_attemper
- 关于进程调度的一个程序,采用C语言编写程序,选用优先数调度算法或简单轮转法对五个进程进行调度,每个进程处于运行(Run)、就绪(Ready)和完成(Finish)三种状态之一,并假定起始状态为就绪状态。-on the process of scheduling a procedure using C language programming, a few selected priority scheduling algorithm or a simple method to rotate fiv
RmExec
- 远程注入的令一种方法: 本例子是利用远程注入让EXPLORER.exe加载CMD.EXE。注意,只能用RELEASE版本,如果想用DEBUG版本,可以把远程函数注入部分(remote.cpp)写成LIB连接接入即可。-leading to the remote injection method : This example is the use of telemedicine for EXPLORER.exe loaded into CMD.EXE. Attention, which can
Clunzhuanfa
- 编写并调试一个模拟的进程调度程序,采用“轮转法”调度算法对五个进程进行调度。 轮转法可以是简单轮转法、可变时间片轮转法,或多队列轮转法。 简单轮转法的基本思想是:所有就绪进程按 FCFS排成一个队列,总是把处理机分配给队首的进程,各进程占用CPU的时间片相同。如果运行进程用完它的时间片后还为完成,就把它送回到就绪队列的末尾,把处理机重新分配给队首的进程。直至所有的进程运行完毕。-prepared a simulation and debugging process sched
pierleetime
- 时间片轮转法实现处理器调度的程序.^-^-time slice Web Method processor scheduling procedures .^-^
ExportclassfromDll
- 一个从动态连接库中动态导出C++类的实现方法,供大家一起研究-from a dynamic link library derived dynamic category C method, we study together for
Ex_Thread
- 5个进程 开始时处于就绪队列中 该单机系统采用时间片轮转法进行调度。假定A每运行4个时间片就发出一次I/O请求,I/O完成时间为20个时间片。D每运行2个时间片就发出一次I/O请求,I/O完成时间为10个时间片。-five at the beginning of the process, in place of the single queue system uses Web Tablet time scheduling method. A running assumed every f
实现从应用程序中直接关闭计算机
- 利用vc++6.0编程实现从应用程序中直接关闭计算机的方法-use vc 6.0 programming from the direct application of the method of shutting down computer
os-banker
- 操作系统中银行家算法的演示程序,银行家算法是避免死锁的方法,避免死锁的法则是,系统在运行过程中,对于进程的每一种资源请求都要根据预掌握的资源使用信息,按照一定的算法,进行是否可能导致死锁的预测,以决定是否同意这一资源请求。这是向前看几步,知道保证不会导致死锁时再向前走一步的具有动态性质的预测算法。-operating system bankers algorithm Demonstration Program, bankers algorithm is a method to avoid dea
虚拟存储器实验
- 此为操作系统实验报告:虚拟存储器 内含:程序流程图 设计思路 主要源码等等。 简介:在计算机系统中,为了提高主存利用率,往往把辅助存储器(如磁盘)作为主存储器的扩充,使多道运行的作业的全部逻辑地址空间总和可以超出主存的绝对地址空间。用这种办法扩充的主存储器称为虚拟存储器。通过本实验帮助同学理解在分页式存储管理中怎样实现虚拟存储器。-experimental operating system for this report : virtual memory consisting of : flow
pub.rar
- 进程调度算法 本程序提供了以下几种进程调度方法 1、时间片轮询法 2、可强占优先法 3、非抢占算法 ,The process of scheduling algorithms This procedure provides the following types of process scheduling method 1, time piece polling method 2, can be forcibly priority law 3, non-preemptive algorithm
tree-method-to-open-exe
- 不同方法实现启动程序,这样可以比较各种方法的优劣-tree method to open extren exe