CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 搜索资源 - 进程创建

搜索资源列表

  1. OS

    0下载:
  2. 进程创建与调用,销毁等功能演示,包含Window内核实验教程电子书,以及系统调用查找电子书和《自己动手写操作系统》-Process creation and call features such as the destruction demo, including Window kernel Experimental Course e-books, as well as system calls to find e-books and the " it-yourself to write
  3. 所属分类:Process-Thread

    • 发布日期:2017-06-20
    • 文件大小:31879821
    • 提供者:abbyxie
  1. processmanager

    0下载:
  2. 进程管理系统模型,可以创建,删除进程,可以实时地观察各个进程的运行情况,时间片分配情况-a model of process manager system,you can create a process,delete a process.also you can watch the running of processes and the allocation of time fragment
  3. 所属分类:Windows Kernel

    • 发布日期:2017-05-18
    • 文件大小:4611951
    • 提供者:zhouchangjun
  1. linux_process

    0下载:
  2. Linux实验 1.进程创建举例 2.进程创建-字符串举例 3.进程控制举例 4.进程通信举例-Linux Experiment 1. The process of creating_1 2. The process of creation_2 3. Process control4. The process of communication
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-29
    • 文件大小:1525
    • 提供者:rebecca
  1. acm

    0下载:
  2. 操作系统课程实验,模拟进程调度,涉及图形用户界面GUI和进程调度算法,用VC6.0实现,包含定时器应用和快捷键创建。-Operating system course experiment to simulate the process of scheduling, involving graphical user interface GUI and the process of scheduling algorithm, using VC6.0 to achieve, including the
  3. 所属分类:GUI Develop

    • 发布日期:2017-04-10
    • 文件大小:2085700
    • 提供者:
  1. SQLServer

    0下载:
  2. 处理器系统的进程调度编写程序完成单处理机系统中的进程调度,要求采用时间片轮转调度算法。实验具体包括:首先确定进程控制块的内容,进程控制块的组成方式;然后完成进程创建原语和进程调度原语;最后编写主函数对所作工作进程测试- Then complete the process of creating original language and the process of scheduling the original language Final preparation of the main f
  3. 所属分类:SQL Server

    • 发布日期:2017-06-02
    • 文件大小:14682130
    • 提供者:hjm
  1. Hook_PRMonitor

    0下载:
  2. Hook进程的创建 以及监控界面源代码-Hook ZwCreateProcess and monitor
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-26
    • 文件大小:58544
    • 提供者:马铭满
  1. communication

    0下载:
  2. 进程间通信,通过共享内存的方式实现进程间通信,即在内存中开辟一个共享内存区域,创建两个控制台应用程序,来检测进程间的通信-Inter-process communication, through the shared memory means to achieve inter-process communication, that is in memory to open a shared memory region, to create two console applications, to
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-10
    • 文件大小:1144
    • 提供者:pipicheng
  1. ProcessOrThread

    0下载:
  2. 驱动创建线程,在线程中进程Sleep操作,-qu dong chuang jian xian cheng
  3. 所属分类:Driver Develop

    • 发布日期:2017-04-03
    • 文件大小:535947
    • 提供者:李于
  1. ppipe

    1下载:
  2. 父进程创建两个子进程,并通过管道向两个子进程分别传递数据,子进程得到数据后进行计算,并将结果传回给父进程。-Parent process creates two child processes, and through pipes to the two sub-processes to transfer data, respectively, after the child process data are calculated, and the results back to the pare
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-07
    • 文件大小:1031
    • 提供者:jeremy
  1. ProcessCreate

    0下载:
  2. 是用c++Builder做的一个小程序,关于进程创建的-Is c++ Builder to do a small program created on the process
  3. 所属分类:Process-Thread

    • 发布日期:2017-04-02
    • 文件大小:371920
    • 提供者:lanhanghua
  1. 11

    0下载:
  2. 进程控制用PCB表示整个进程实体,利用随机数方法或键盘控制方法模拟进程执行中产生的事件。或者利用鼠标或者键盘中断的基于图形接口方式的进程控制管理。 具体过程: 1、 定义PCB(可以采用静态结构或动态结构):包括理论PCB中的基本内容,如内部ID、外部ID、进程状态、队列指针。由于无法实现真正的进程创建功能,在实验中只需建立PCB,用它代表完整的进程。 2、 定义进程状态转换方式:进程的状态转换是由进程内部操作或操作系统的控制引起,由于无法实现这些功能,学生可以采用随机数方法或键盘控
  3. 所属分类:Other systems

    • 发布日期:2017-04-13
    • 文件大小:1776
    • 提供者:yli
  1. sy4

    1下载:
  2. 线程的创建和同步控制 在windows2000的环境下,创建一个控制台进程,此进程创建两个并发线程,一个是读线程,另一个是写线程。这两个线程共享一个数组A,写线程对数组分别进行10次写操作,每次写操作对A的每个元素赋一个相同的值;读线程对数组分别进行10次读操作,每次读操作输出A中所有元素的值。写出相应代码,并分析运行结果。修改代码,使每次读写互斥,即每次对数组的写操作结束后才能进行写操作,反之亦然。-Thread creation and synchronization control i
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-30
    • 文件大小:714707
    • 提供者:陈婷婷
  1. 2020

    0下载:
  2. (含有实验要求和实验报告) 时间片轮转调度算法实现进程调度.完成单处理机系统中的进程调度. 包括以下内容: 进程控制块的内容,进程控制块的组成方式;进程创建和进程调度;主函数对进程测试-Rotation scheduling algorithm for time slicing process scheduling. Completed the process of single-processor systems scheduling. Include the following:
  3. 所属分类:Windows Kernel

    • 发布日期:2017-04-08
    • 文件大小:64135
    • 提供者:kenjey
  1. processcreat

    0下载:
  2. 进程创建模拟 针对操作系统中进程创建相关理论进行实验。要求实验者输书提供的代码并进行测试。代码简化了进程创建的多个步骤和内容。进程的树形结构采用广义二叉树的方式进行存储。-Process simulation for the operating system in the process of creating theories to create the experiment. Asked the experimenter to provide written input and teste
  3. 所属分类:Network Security

    • 发布日期:2017-04-07
    • 文件大小:35147
    • 提供者:kkk
  1. LimitProcess

    0下载:
  2. 限制作业中的进程,创建作业,添加进程,vc6.0开发.-Restrict operation of the process, create jobs, add the process, vc6.0 development.
  3. 所属分类:Process-Thread

    • 发布日期:2017-04-24
    • 文件大小:29248
    • 提供者:zhangturing
  1. system

    0下载:
  2. 该资源主要是测试在某操作系统的条件下,测试进程创建的所耗资源和所需时间,当然,还有系统的性能。-The resources are mainly tested under the conditions of the operating system in a test process to create the resources and time consumed, of course, the system performance.
  3. 所属分类:OS Develop

    • 发布日期:2017-04-06
    • 文件大小:11513
    • 提供者:skyqty
  1. os_shiyan

    0下载:
  2. 操作系统课程所有的试验的源码,包括处理及调度与死锁,可变分区存储管理,设备管理,文件管理,进程创建与撤销,进程同步,还有相关的报告。对于计算机专业操作系统学习很有用处的!-All of the tests the operating system source program, including processing and scheduling and deadlock, variable partition storage management, device management, do
  3. 所属分类:OS Develop

    • 发布日期:2017-05-14
    • 文件大小:3324633
    • 提供者:meizi
  1. Process

    0下载:
  2. 模拟程序通过创建、初始化、修改进程控制块模拟进程的创建、撤消、唤醒、阻塞过程。进程创建时要求模拟为进程分配内存的功能,释放进程时模拟为内存回收功能。程序支持任意多个进程的控制过程。进程调度的策略:实时进程采用基于优先权的非抢占式调度、普通进程和批处理进程采用先进先出的抢占式调度。要求输出界面清晰,每完成一次操作(创建、撤消、阻塞、唤醒)能够输出当前运行进程、就绪进程和阻塞进程的id号、进程状态、进程优先权和进程类型(实时、分时、批处理)。-Process
  3. 所属分类:Process-Thread

    • 发布日期:2017-03-30
    • 文件大小:263707
    • 提供者:
  1. Createasimulationoftheprocessofimplementation

    0下载:
  2. 代码简化了进程创建的多个步骤和内容。进程的树形结构采用广义表的方式进行存储。-Code simplifies the process and content created in multiple steps. Process using the generalized table tree structure the way for storage.
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-04
    • 文件大小:184957
    • 提供者:赵星
  1. processcreate

    0下载:
  2. 进程创建,创建新的进程,创建一个子进程,启动注册表程序,等待子进程的退出-Process creation, create new process, create a child process, start registry procedures, waiting for the child process exit
  3. 所属分类:Process-Thread

    • 发布日期:2017-04-08
    • 文件大小:4098
    • 提供者:xiaoyu
« 1 2 3 4 5 6 78 9 10 11 12 ... 50 »
搜珍网 www.dssz.com