-
这是一道经典的线程同步问题――哲学家吃饭问题。这里结合了win32使得这个问题可视化了...
这是一道经典的线程同步问题――哲学家吃饭问题。这里结合了win32使得这个问题可视化了-This is a classic thread synchronization-- philosopher food problem. Win32 here combination of this makes the issue of visualization
- 2023-01-27 14:00:03下载
- 积分:1
-
创建一个子进程并接收子进程的消息和输出信息
创建一个子进程并接收子进程的消息和输出信息- Founds a child process and receives the child process the news
and the output information
- 2022-04-07 03:12:03下载
- 积分:1
-
实现了在windows系统下的进程隐藏,有效的保护了进程的安全性...
实现了在windows系统下的进程隐藏,有效的保护了进程的安全性
- 2022-01-25 15:03:44下载
- 积分:1
-
查看当前正在运行的进程的相关信息,包括倒入的dll信息,加载地址等。...
查看当前正在运行的进程的相关信息,包括倒入的dll信息,加载地址等。-View is currently running processes related information, including information poured into the dll, loading address.
- 2023-01-15 04:50:04下载
- 积分: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
-
WIN2000及以上版本, MicroSoft提供了一个全新的途径, 即 PSAPI.DLL通过 PSAPI.DLL, 我们可以枚举正在运行的所有进程, 进程的...
WIN2000及以上版本, MicroSoft提供了一个全新的途径, 即 PSAPI.DLL通过 PSAPI.DLL, 我们可以枚举正在运行的所有进程, 进程的所有模块, 进程的可执行文件名及路径等-versions of Windows 2000 and above, MicroSoft provide a new way, through PSAPI.DLL PSAPI.DLL, we can enumeration of all the running process, the process of all modules, the process executable file name and path.
- 2022-10-17 20:35:03下载
- 积分: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
-
VC++ 6多线程技术在端口扫描的应用程序…
VC++6.0多线程技术在端口扫描程序中的应用
- 2022-01-29 03:16:39下载
- 积分:1
-
多的制备方法
多线程程序的编写,多线程应用中容易出现的问题。互斥对象的讲解,如何使用互斥对象来实现多线程的同步。如何利用命名互斥对象保证应用程序只有一个实例运行。应用多线程编写网络聊天室程序。-Procedures for the preparation of multi-threaded, multi-threaded applications easily arise. Mutex object to explain, how to use the mutex object to realize multi-thread synchronization. How to use named mutex object to ensure that applications run only one instance. Application of multi-threaded chat room procedures for the preparation of the network.
- 2022-07-09 10:13:40下载
- 积分:1
-
在一个程序中,进行中开多个线程,实现多线程编程
在一个程序中,进行中开多个线程,实现多线程编程-In a process, carried out a number of threads in the open, multi-threaded programming
- 2023-05-31 01:05:04下载
- 积分:1