登录
首页 » Process-Thread » 这是一种方法,你也可以在取定那一步使用你自己喜欢的取定方法,...

这是一种方法,你也可以在取定那一步使用你自己喜欢的取定方法,...

于 2022-08-08 发布 文件大小:40.99 kB
0 121
下载积分: 2 下载次数: 1

代码说明:

这是一种方法,你也可以在取定那一步使用你自己喜欢的取定方法,-This is one of the ways you can take the step that will use your own favorite from determined,

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • CPU的进程控制程序 VB做的,还不错
    CPU的进程控制程序 VB做的,还不错-CPU process control procedures for VB to do, but also good
    2022-11-11 22:05:03下载
    积分:1
  • 这是我花了几天十间做的操作系统课程设计进程管理代码
    这是我花了几天十间做的操作系统课程设计进程管理代码-This is what I spent 10 days doing the courses on operating system design process management code
    2022-03-22 22:11:01下载
    积分:1
  • VC完整应用程序代码,多线程 多任务,还可以自己使用
    VC完整应用程序代码,多线程 多任务,还可以自己使用-VC complete application code, multi-threaded multi-task, but also for its own use
    2022-12-24 08:00:03下载
    积分:1
  • C# a process manager, will show all system processes, and its termination of ope...
    用C#实现的一个进程管理器,能显示出系统中所有进程,及对其进行终止等操作,值得一看。-C# a process manager, will show all system processes, and its termination of operations overseas.
    2022-03-21 12:32:07下载
    积分:1
  • 看一下UNIX系统中的进程和Mach的任务和线程之间的关系。在UNIX系统中,一个进程包括一个可执行的程序和一系列的资源,例如文件描述符表和地址空间。在Mach...
    看一下UNIX系统中的进程和Mach的任务和线程之间的关系。在UNIX系统中,一个进程包括一个可执行的程序和一系列的资源,例如文件描述符表和地址空间。在Mach中,一个任务仅包括一系列的资源;线程处理所有的可执行代码。一个Mach的任务可以有任意数目的线程和它相关,同时每个线程必须和某个任务相关。和某一个给定的任务相关的所有线程都共享任务的资源。这样,一个线程就是一个程序计数器、一个堆栈和一系列的寄存器。所有需要使用的数据结构都属于任务。一个UNIX系统中的进程在Mach中对应于一个任务和一个单独的线程。 -look at the UNIX System and the process of Mach"s mandate and the relationship between the threads. In UNIX systems, a process includes an executable program and a range of resources, such as file descriptors table and address space. In Mach, a task only a series of resources; Threads handle all the executable code. A Mach task can have any number of threads and its associated, and each one must thread related tasks. And to a certain set of tasks related to the threads are sharing all the resources. Thus, a thread is a program counter, a stack, and a series of registers. All need to use the data structures are covered by the mandate. A UNIX system in the process of Mach which corresponds to a mandate and a separate thread.
    2022-12-05 01:30:03下载
    积分:1
  • 利用DELPHI下标准的多线程类TThread来完成我们多现程的设计
    利用DELPHI下标准的多线程类TThread来完成我们多现程的设计-use under standard multithreaded category TThread to finish what we design is the way
    2022-01-23 10:53:19下载
    积分:1
  • 用VC6.0写的一个简单的多
    用VC6.0写的简单多线程,初学者可以参考一下-VC6.0 write with a simple multi-threaded, beginners can take a look
    2022-02-03 13:05:13下载
    积分:1
  • 基本上实现处理机对进程的最主要的调度执行算法:包括先来先服务、短作业/进程优先、时间片轮转调度算法、优先权调度算法、高响应比优先调度算法、多级反馈队列调度算法等...
    基本上实现处理机对进程的最主要的调度执行算法:包括先来先服务、短作业/进程优先、时间片轮转调度算法、优先权调度算法、高响应比优先调度算法、多级反馈队列调度算法等算法。-Basically realize the main processor to process the implementation of the scheduling algorithm: including first-come, first serve, short operation/process priority, time slice rotation scheduling algorithm, priority scheduling algorithm, high priority response ratio scheduling algorithm, multi-level feedback queue scheduling algorithm such as algorithm.
    2022-06-30 02:16:08下载
    积分:1
  • 与pssetcreateprocessnotifyroutine,pssetcreatethreadnotifyroutine线程问题。
    用PsSetCreateProcessNotifyRoutine,PsSetCreateThreadNotifyRoutine来进行进程线程监控我想大家已经都非常熟练了.sinister在一文中已经实现得很好了.前一段时间看到网上有人在研究监视远线程的文章,比较有意思.就写代码玩一玩.这之中就出现了一些问题.比方说直接用sinister的代码的话,是不能动态卸载的,因为他在安装了进线程监视函数后没有进行清除动作,造成在动态卸载时蓝屏,BUGCHECK为0x000000ce,错误码为:DRIVER_UNLOADED_WITHOUT_CANCELLING_PENDING_OPERATIONS.很显然,在驱动退出后,一些进线程操作仍然在访问原来的地址,造成出错.在XP后,微软给出了一个函数PsRemoveCreateThreadNotifyRoutine用来清除线程监视函数(清除进程监视的就是PsSetCreateProcessNotifyRoutine).我一直奇怪ICESWORD在2000中是怎么做到进线程监视的.后来才发现,在运行icesword后释放出一个detport.sys文件,然后一直在系统中存在着没有卸载掉.只是把它隐藏了而已^_^.这不是个好消息,难道我为了测试一个驱动,测试一次就得重启一次吗?呵呵,肯定不是啊,所以想办法搞定它.-with PsSetCreateProcessNotifyRoutine, PsSetCreateThreadNotifyRoutine thread to process control, I think we had a very skilled. Sinister In "" A text has been achieved in very good. Some time ago the Internet was seen in the surveillance study of the threads from article more interesting. Write playing with a code to play. on this issue, there have been some proble
    2023-06-28 21:35:02下载
    积分:1
  • 一个很好的多线程控制的程序,可以随鼠标的移动画圆,同时可以占用window的空闲线程...
    一个很好的多线程控制的程序,可以随鼠标的移动画圆,同时可以占用window的空闲线程-a good multi-threaded control procedures, which can be mobile Circle mouse, the window could occupy idle threads
    2023-07-07 20:20:02下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载