-
这是一个非常好的进度条控件,可以多种颜色和填充方式显示进度,很漂亮....
这是一个非常好的进度条控件,可以多种颜色和填充方式显示进度,很漂亮.-This is a very good progress of controls, can fill a variety of colors and shown progress, and very pretty.
- 2022-03-26 15:59:42下载
- 积分: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
-
操作系统进程调度内存分配与回收
操作系统进程调度内存分配与回收-operating system memory allocation process scheduling and recovery
- 2022-05-28 09:02:22下载
- 积分:1
-
一个多任务应用程序。带有四个彩色转轮的应用程序,每个彩色转轮都按自己的线程运行。其中两个使用OnIdle函数;另外两个则作为独立的线程运行。...
一个多任务应用程序。带有四个彩色转轮的应用程序,每个彩色转轮都按自己的线程运行。其中两个使用OnIdle函数;另外两个则作为独立的线程运行。-a multi-tasking applications. Color wheel with four applications, each color wheel has its own threads to run. Two of them use OnIdle function; The other two were used as the independent threads running.
- 2022-05-17 14:55:08下载
- 积分:1
-
a trip can be used to transfer information within the paradigm used to address m...
一次出行可以用来传递范式内的信息,用来解决更多的信息访问,交流非常方便
- 2022-01-21 00:35:59下载
- 积分:1
-
NT下未公开的多线程读,单线程写的函数, 了解它对多线程编程会起到非常大的作用....
NT下未公开的多线程读,单线程写的函数, 了解它对多线程编程会起到非常大的作用.-NT under undisclosed multi-thread reading, writing single-threaded function, to understand its multi-threaded programming will play a very large role.
- 2022-08-05 16:21:43下载
- 积分:1
-
进程管理软件,相当好用!
大家快来下啊 功能非常强大,
进程管理软件,相当好用!
大家快来下啊 功能非常强大,-process management software, very useful! We Come under ah is very powerful,
- 2022-04-26 17:28:26下载
- 积分:1
-
windows平台的串口接收程序,接收声音采集数据,采用多线程编程...
windows平台的串口接收程序,接收声音采集数据,采用多线程编程-serial windows platform to receive the procedure, receiving the voice data collection, using multi-threaded programming
- 2022-11-23 05:50:04下载
- 积分:1
-
VB6.0编写一个多
一个基于vb6.0编写的多线程程序.以两个图片框背景色的同时改变来演示多线程-vb6.0 prepared for a multi-threaded process. Photo frame with two background color change at the same time to demonstrate the multithread
- 2023-04-11 07:30:03下载
- 积分:1
-
实现一个多线程管理类,能够设定线程个数,自动分配任务,判定进程是否结束...
实现一个多线程管理类,能够设定线程个数,自动分配任务,判定进程是否结束-The realization of a multi-threaded management can set the number of threads, automatic distribution of tasks, to determine whether or not the end of the process
- 2022-01-30 21:54:23下载
- 积分:1