CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 Windows编程 进程与线程 搜索资源 - console application

搜索资源列表

  1. BeginthreadDemo.rar

    0下载:
  2. 这是我写的Win32 console Application程序来测试_beginthread函数创建多线程程序的用法以及参数传递的程序。
  3. 所属分类:进程与线程

    • 发布日期:
    • 文件大小:1.17mb
    • 提供者:
  1. TerminateCloseProcess

    0下载:
  2. windows控制台程序,调用windowsAPI,关闭外部的一个应用程序.输入目标进程的进程ID后,即可关闭-windows console procedures, call windowsAPI. Close an external application. Goals process input in the process ID, will be closed
  3. 所属分类:进程与线程

    • 发布日期:2008-10-13
    • 文件大小:6.95kb
    • 提供者:黄海
  1. transparentconsole_demo

    0下载:
  2. Transparent Console Application -Transparent Console Application
  3. 所属分类:进程与线程

    • 发布日期:2008-10-13
    • 文件大小:27.19kb
    • 提供者:srhg
  1. Alarm_demo

    0下载:
  2. Transparent Console Application -Transparent Console Application
  3. 所属分类:进程与线程

    • 发布日期:2008-10-13
    • 文件大小:114.64kb
    • 提供者:srhg
  1. 一个多线程的windows控制台应用程序

    1下载:
  2. 一个多线程的windows控制台应用程序-a multithreaded the windows console application
  3. 所属分类:进程与线程

    • 发布日期:2008-10-13
    • 文件大小:85.28kb
    • 提供者:沈凌
  1. BeginthreadDemo.rar

    0下载:
  2. 这是我写的Win32 console Application程序来测试_beginthread函数创建多线程程序的用法以及参数传递的程序。, This is Win32 console which I writes the Application procedure tests the _beginthread function foundation multithreading procedure the usage as well as the parameter transmissio
  3. 所属分类:进程与线程

    • 发布日期:2017-11-08
    • 文件大小:7.02kb
    • 提供者:lanlamer
  1. Console

    0下载:
  2. 控制台程序,使用window线程通讯函数,进行多线程通讯-Console application, use the window thread communication function, multi-thread communication
  3. 所属分类:Process-Thread

    • 发布日期:2017-04-04
    • 文件大小:62.68kb
    • 提供者:zhangjunfeng
  1. 20110407-05-_MutexObject

    0下载:
  2. C++ 创建线程互斥对象的实例源码下载,声明线程函数,创建线程,程序睡眠,释放互斥对象,设置事件对象为无信号状态,生成控制台程序,仅供参考。-C++ to create an instance of the thread mutex source download, declare the thread function, create a thread, the program sleep, release the mutex object, set the event object to n
  3. 所属分类:Process-Thread

    • 发布日期:2017-04-08
    • 文件大小:2.42kb
    • 提供者:袁元
  1. Reader-Writer

    0下载:
  2. 创建一个控制台进程,此进程包含n个线程,用这n个线程来表示n个读者或写者,每个线程按相应测试数据文件(后面有介绍)的要求进行读写操作,用信号量机制分别实现读者优先和写者优先的读者-写者问题。 读者-写者问题的读写操作限制(包括读者优先和写者优先): 写-写互斥,即不能有两个写者同时进行写操作。 读-写互斥,即不能同时有一个线程在读,而另一个线程在写。 读-读允许,即可以有一个或多个读者在读。 读者优先的附加限制:如果一个读者申请进行读操作时已有另一个读者正在进行读操作,则该
  3. 所属分类:Process-Thread

    • 发布日期:2017-03-27
    • 文件大小:7.34kb
    • 提供者:何必
  1. shiyan3

    0下载:
  2. 设计一个控制台程序,其中含有两个子线程。两个线程的功能都是输出一个数字,但第一个线程输出“1”,第二个线程输出“2”; 提示:写两个函数,分别循环输出1、2,在main函数中用这两个函数创建两个线程。 -Design a console application, which contains two sub-thread. Two threads are output to a number, but a thread output " 1" , the second t
  3. 所属分类:Process-Thread

    • 发布日期:
    • 文件大小:21.21kb
    • 提供者:陈通
  1. KillBaiduPlayer

    0下载:
  2. WIN32 枚举指定进程并结束进程 控制台程序 本例以*百度影音的进程为例子-Enumeration specifies WIN32 console application process and end the process in this case in order to kill the process as an example Baidu video
  3. 所属分类:Process-Thread

    • 发布日期:2017-04-01
    • 文件大小:7.41kb
    • 提供者:姚远智
  1. process-scheduler-schedulin

    0下载:
  2. 2. 用VC+6.0创建一个控制台应用程序(这个控制台应用程序的类型是A hello world application)。 3. 编程创建一系列的进程并放入就绪队列中(使用链表实现),来模拟进程创建。 4. 把创建的进程的信息在屏幕上显示出来。 5. 设计进程调度程序模拟两种以上调度算法(时间片调度、优先级调度)。 6. 进程调度程序从活动就绪队列中挑选进程,若队列为空,应显示相应提示信息。 7. 必须有出错处理。 -2. With VC+6.0 create a co
  3. 所属分类:Process-Thread

    • 发布日期:2017-04-03
    • 文件大小:7.79kb
    • 提供者:李亮
  1. Job_Scheduling

    0下载:
  2. 我是编程小菜鸟,最近上课编了一个模拟操作系统作业调度的算法,内有FCFS(先到先服务),STF(短作业),RR(时间片),HRF,HRRF(高响应比),供参考,欢迎批评!-This is a Win32 console application which can easily imitating the OS to scheduling job,including FCFS,STF,RR,HRF,HRRF.
  3. 所属分类:Process-Thread

    • 发布日期:2017-04-02
    • 文件大小:253.14kb
    • 提供者:李宜核
  1. ThreadCMutex

    0下载:
  2. 控制台程序中CMutex简单使用实例。创建两个线程使线程能够达到同步。-Console application CMutex simple example. Create two threads to synchronize the threads.
  3. 所属分类:Process-Thread

    • 发布日期:2017-05-09
    • 文件大小:1.54mb
    • 提供者:lbq
  1. ThreadCritical

    0下载:
  2. 控制台程序中Critical简单使用实例。创建两个线程使线程能够达到同步。-Console application Critical simple example. Create two threads to synchronize the threads.
  3. 所属分类:Process-Thread

    • 发布日期:2017-05-07
    • 文件大小:1.38mb
    • 提供者:lbq
  1. ThreadEvent

    0下载:
  2. 控制台程序中Event简单使用实例。创建两个线程使线程能够达到同步。-Console application Event simple example. Create two threads to synchronize the threads.
  3. 所属分类:Process-Thread

    • 发布日期:2017-05-07
    • 文件大小:1.38mb
    • 提供者:lbq
  1. ThreadMutex

    0下载:
  2. 控制台程序中Mutex简单使用实例。创建两个线程使线程能够达到同步。-Console application Mutex simple example. Create two threads to synchronize the threads.
  3. 所属分类:Process-Thread

    • 发布日期:2017-05-07
    • 文件大小:1.36mb
    • 提供者:lbq
  1. TreadCCritical

    0下载:
  2. 控制台程序中CCritical简单使用实例。创建两个线程使线程能够达到同步。-Console application CCritical simple example. Create two threads to synchronize the threads.
  3. 所属分类:Process-Thread

    • 发布日期:2017-05-16
    • 文件大小:3.89mb
    • 提供者:lbq
  1. ThreadCevent

    0下载:
  2. 控制台程序中CEvent简单使用实例。创建两个线程使线程能够达到同步。-Console application CEvent simple example. Create two threads to synchronize the threads.
  3. 所属分类:Process-Thread

    • 发布日期:2017-05-09
    • 文件大小:1.53mb
    • 提供者:lbq
  1. ThreadConsole

    0下载:
  2. Is it possible to write a console application and use multiple threads ? cause it doesn t work for me. After creating a thread and running , none of the code afterwards is ever d-Is it possible to write a console application and use multiple threads
  3. 所属分类:Process-Thread

    • 发布日期:2017-05-06
    • 文件大小:797.21kb
    • 提供者:hieumc
« 12 »
搜珍网 www.dssz.com