-
成功 关于线程和进程的程序
成功 关于线程和进程的程序-success on the threads of procedures and processes
- 2022-02-20 06:09:01下载
- 积分:1
-
windows任务管理器都无法结束其进程,看下这是如何做到的
windows任务管理器都无法结束其进程,看下这是如何做到的-windows task manager will not be able to end the process, facie this is the way to do
- 2022-03-23 16:08:00下载
- 积分:1
-
多线程范例,利用Windows+MFC开发,学习多线程的例子
多线程范例,利用Windows+MFC开发,学习多线程的例子-multithreading example, the use of Windows+ MFC development, learning multithreading example
- 2022-12-07 06:35:03下载
- 积分:1
-
线程的启动、终止、和停止操作的实现,操作功能有System.threading完成...
线程的启动、终止、和停止操作的实现,操作功能有System.threading完成-threads start to end, to cease operation and the realization of operating functions are completed System.threading
- 2022-05-18 06:10:58下载
- 积分:1
-
多线程实现的快速搜索文件 注:网上搜索,已经验证
多线程实现的快速搜索文件 注:网上搜索,已经验证-multithreading Fast Search document Note : online search, verification
- 2023-01-31 01:40:04下载
- 积分:1
-
一个关于进程管理的viasual C++源代码
一个关于进程管理的viasual C++源代码-On process management viasual C++ Source code
- 2022-06-27 01:55:59下载
- 积分:1
-
公司考勤系统。主要数据采集与实现…
公司设有考勤系统。考勤的主要数据收集和执行。多线程处理大数据时不会出现写文章的现象/
- 2022-01-21 19:38:16下载
- 积分:1
-
VC多线程编程大全的好书,值得推荐哟,欢迎下载!
VC多线程编程大全的好书,值得推荐哟,欢迎下载!-VC multithreaded programming accessible books worth recommending yo welcome to download!
- 2022-02-05 22:15:13下载
- 积分: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
-
简单的工具,通过MIB树使用简单网络管理协议(S.
simple tool to walk through MIB tree using Simple Network Management Protocol (SNMP). I developed this tool solely for learning
- 2023-03-06 19:00:04下载
- 积分:1