-
主要讲的是售票功能,在不同站点售同一组票,而不会发生错误。...
主要讲的是售票功能,在不同站点售同一组票,而不会发生错误。-Major topics of the ticketing functions in different sites selling the same set of votes without error.
- 2022-03-07 14:47:57下载
- 积分:1
-
一个异步线程的例子!使用C++编写。
多线程编写初步例子!...
一个异步线程的例子!使用C++编写。
多线程编写初步例子!-Example of an asynchronous thread! The use of C++ Prepared. Examples of the preparation of a preliminary multi-threaded!
- 2022-02-04 20:02:34下载
- 积分:1
-
模拟操作系统里实现读者-写者问题的程序实例。用vc++编写,直接打开工程文件即可调试。...
模拟操作系统里实现读者-写者问题的程序实例。用vc++编写,直接打开工程文件即可调试。-operating system simulation, achieving readers- who wrote the program examples. Vc with the preparation, direct project documents can be opened debugging.
- 2022-04-07 12:12:12下载
- 积分:1
-
实时动态显示进程信息的程序,如资源利用等。比任务管理器显示更多进程信息...
实时动态显示进程信息的程序,如资源利用等。比任务管理器显示更多进程信息- Real-time dynamic demonstration advancement information
procedure, like resources use and so on. Compared to the task
management demonstration are more advancements information
- 2022-06-13 14:42:09下载
- 积分:1
-
在Dao中使用多线程
在Dao中使用多线程-Using multi-thread in DAO
- 2022-02-21 01:50:16下载
- 积分:1
-
依次执行一系列程序且每个程序之间执行有时间间隔。
依次执行一系列程序且每个程序之间执行有时间间隔。- Carries out between in turn a series of procedures also each
procedure carries out has the time-gap.
- 2022-03-07 19:38:14下载
- 积分:1
-
program VirtualMemory {$APPTYPE CONSOLE} uses SysUtils, Windows const PageSize =...
program VirtualMemory {$APPTYPE CONSOLE} uses SysUtils, Windows const PageSize = 4096 //定义页面大小 var VmAddress, CommitAddress: Pointer //存放虚拟内存基址 Text: Pchar begin //保留二页虚拟内存 VmAddress := VirtualAlloc(nil, PageSize * 2, MEM_RESERVE, PAGE_READWRITE) if not Assigned(VmAddress) then begin WriteLn( 保留虚拟内存失败! ) ExitProcess(0) end else WriteLn(Format( 保留虚拟内存成功, 基址为:[%8.8x]! , [Longint(VmAddress)])) //提交第二页虚拟内存 CommitAddress := Pointer(Longint(VmAddress) + PageSize) CommitAddress := VirtualAlloc(CommitAddress, PageSize, MEM_COMMIT, PAGE_READWRITE) if not Assigne-program VirtualMemory ($ APPTYPE CONSOLE) uses SysUtils, Windows const PageSize = 4096// definition pages size var VmAddress, CommitAddress : Pointer// virtual memory-based storage site Text : Pchar begin// reservations two virtual memory VmAddress : = VirtualAlloc (nil. PageSize* 2, MEM_RESERVE, PAGE_READWRITE) if not Assigned (VmAddress) then begin WriteLn (reservations virtual memory failure!) ExitProcess (0) end else WriteLn (Format
- 2022-10-06 15:35:03下载
- 积分:1
-
c++或C下如何使用多线程
c++或C下如何使用多线程-how to use multithreading
- 2022-01-31 14:00:58下载
- 积分:1
-
实现了C++中的协程机制,对于支持动态脚本的
C++代码比较有用,请参见我的博客文章
http://www.cublog.cn/u/16663/show...
实现了C++中的协程机制,对于支持动态脚本的
C++代码比较有用,请参见我的博客文章
http://www.cublog.cn/u/16663/showart.php?id=148848-realization of the C-HS mechanism for supporting dynamic script more useful C code, Please see my blog article http :// www.cublog.cn/u/16663/showart.php id = 14 8848
- 2022-07-23 13:29:37下载
- 积分:1
-
IO Completion Port to use examples of the basic IO Completion Ports API function...
IO完成端口使用事例, 对IO完成端口的基本API函数的使用范例来介绍IO完成端口的作用-IO Completion Port to use examples of the basic IO Completion Ports API function to use an example to introduce the role of IO Completion Ports
- 2023-01-23 23:35:03下载
- 积分:1