Windows自身没有提供类似Linux cgroup的能力来限制进程或进程组的资源占用,进程CPU/IO/内存/网络等资源的控制只能由自己实现。目前已有第三方的实现,主要是限制进程CPU的占用,如文档 < 21 Best Ways to Limit the CPU Usage of a Process > 所描述的BES,Process Tamer等软件。自Windows 8及Server 2012开始Windows系统有提供以job为单位的CPU占用及内存上限设置,之前的版本则只能以进程或线程为单位进行限制。
进程CPU占用限制方案
即时轮询系统所有进程(线程)的CPU占用,当发现所设定进程有超标时强制暂停进程所有线程的执行,然后在适当的时机再恢复执行。其中所涉及技术点:
进程CPU占用查询 GetProcessTimes
BOOL GetProcessTimes(
[in] HANDLE hProcess,
[out] LPFILETIME lpCreationTime,
[out] LPFILETIME lpExitTime,
[out] LPFILETIME lpKernelTime,
[out] LPFILETIME lpUserTime
);
此函数可以获取进程从创建至当前的总运行时间及总的CPU时间,(KernelTime + UserTime) < 系统CPU数 * (当前时间 - CreationTime)
线程CPU占用查询 GetThreadTimes
BOOL GetThreadTimes(
[in] HANDLE hThread,
[out] LPFILETIME lpCreationTime,
[out] LPFILETIME lpExitTime,
[out] LPFILETIME lpKernelTime,
[out] LPFILETIME lpUserTime
);
QueryThreadCycleTime可以提供更精准的CPU时间数据,单位为CPU时钟周期
BOOL QueryThreadCycleTime(
[in] HANDLE ThreadHandle,
[out] PULONG64 CycleTime
);
线程暂停及恢复
Windows平台没有提供暂停整个进程的支持函数,只能以线程为单位来操作,即SuspendThread及ResumeThread:
DWORD SuspendThread(
[in] HANDLE hThread
);
DWORD ResumeThread(
[in] HANDLE hThread
);
CPU亲和性设置: SetProcessAffinityMask
BOOL SetProcessAffinityMask(
[in] HANDLE hProcess,
[in] DWORD_PTR dwProcessAffinityMask
);
此函数可以限定进程及其所有线程所能使用的CPU,故一定程序上亦限定了进程最大的系统CPU占用率。
DWORD_PTR SetThreadAffinityMask(
[in] HANDLE hThread,
[in] DWORD_PTR dwThreadAffinityMask
);
此函数可单独限制特定线程的CPU亲和性。
进程优先级设置: SetPriorityClass
优先级解决的是优先运行及退让CPU的问题,本质上并不能限定CPU占用,只是优先级高于当前任务的忙碌的时候,当前进程会主动退让CPU 线程优先级设置:SetThreadPriority
BOOL SetThreadPriority(
[in] HANDLE hThread,
[in] int nPriority
);
Job Objects
Windows系统提供了Job的概念用以管理多个进程,可以限制Job对象内所有进程及期线程的CPU核心占用、CPU占用及内存分配上限等,均通过SetInformationJobObject来实现,具体的CPU限制由JOBOBJECT_CPU_RATE_CONTROL_INFORMATION管理,内存限制则由JOBOBJECT_EXTENDED_LIMIT_INFORMATION来管理。
BOOL SetInformationJobObject(
[in] HANDLE hJob,
[in] JOBOBJECTINFOCLASS JobObjectInformationClass,
[in] LPVOID lpJobObjectInformation,
[in] DWORD cbJobObjectInformationLength
);
需要注意的是CPU占用设置只有Windows 8及Server 2012之后的版本有效。
CPU Sets
此部分只限定了CPU Affinity属性
实验验证
可以直接利用开源项目go-winjob验证,验证系统Windows 8 x64,go-winjob git repo: https://github.com/kolesnikovae/go-winjob
验证程序
#include <stdio.h>
#include <stdlib.h>
void main(int argc, char *argv[])
{
unsigned long total = 0, count = 0, i = 0;
while (1) {
if (malloc(1024)) {
total += 1024;
count++;
}
if (!(++i & 4095))
printf("alloc: %u size: %u bytes\n", count, total);
}
}
无限制
在无限制的情况下,此进程会占满一个CPU核心,commit内存总占用达2G

单一进程
在设定CPU上限16%及内存16M上限之后,结果如下:
examples/job_object.go按如下修改:
var limits = []winjob.Limit{
winjob.WithBreakawayOK(),
winjob.WithKillOnJobClose(),
winjob.WithActiveProcessLimit(3),
winjob.WithProcessTimeLimit(10 * time.Second),
winjob.WithCPUHardCapLimit(1600), // 16%
winjob.WithProcessMemoryLimit(16 << 20), // 16MB
winjob.WithWriteClipboardLimit(),
}
const defaultCommand = ".\\CPUStress.exe"
多进程(双进程)
将winjob.WithProcessMemoryLimit 改为 winjob.WithJobMemoryLimit,后者表示此job内所有进程要占用的总内存限制:
var limits = []winjob.Limit{
winjob.WithBreakawayOK(),
winjob.WithKillOnJobClose(),
winjob.WithActiveProcessLimit(3),
winjob.WithProcessTimeLimit(10 * time.Second),
winjob.WithCPUHardCapLimit(1600), // 16%
winjob.WithJobMemoryLimit(16 << 20), // 16MB
winjob.WithWriteClipboardLimit(),
}
验证结果如下:

winjob example代码:
// +build windows
package main
import (
"encoding/json"
"log"
"os"
"os/exec"
"os/signal"
"time"
"golang.org/x/sys/windows"
"github.com/kolesnikovae/go-winjob"
)
var limits = []winjob.Limit{
winjob.WithBreakawayOK(),
winjob.WithKillOnJobClose(),
winjob.WithActiveProcessLimit(3),
winjob.WithProcessTimeLimit(10 * time.Second),
winjob.WithCPUHardCapLimit(1600), // 16%
winjob.WithJobMemoryLimit(16 << 20), // 16MB
winjob.WithWriteClipboardLimit(),
}
const defaultCommand = ".\\CPUStress.exe"
const stressCommand = ".\\CPUStressX64.exe"
func main() {
job, err := winjob.Create("", limits...)
if err != nil {
log.Fatalf("Create: %v", err)
}
cmd := exec.Command(defaultCommand)
cmd.Stderr = os.Stderr
cmd.SysProcAttr = &windows.SysProcAttr{
CreationFlags: windows.CREATE_SUSPENDED,
}
if err := cmd.Start(); err != nil {
log.Fatalf("Start: %v", err)
}
stress := exec.Command(stressCommand)
stress.Stderr = os.Stderr
stress.SysProcAttr = &windows.SysProcAttr{
CreationFlags: windows.CREATE_SUSPENDED,
}
if err := stress.Start(); err != nil {
log.Fatalf("Start: %v", err)
}
s := make(chan os.Signal, 1)
signal.Notify(s, os.Interrupt)
c := make(chan winjob.Notification)
subscription, err := winjob.Notify(c, job)
if err != nil {
log.Fatalf("Notify: %v", err)
}
done := make(chan struct{})
go func() {
defer close(done)
ticker := time.NewTicker(time.Second * 5)
defer ticker.Stop()
var counters winjob.Counters
for {
select {
case <-s:
log.Println("Closing job object")
if err := job.Close(); err != nil {
log.Fatal(err)
}
log.Println("Closing subscription")
if err := subscription.Close(); err != nil {
log.Fatal(err)
}
return
case n, ok := <-c:
if ok {
log.Printf("Notification: %#v\n", n)
} else if err := subscription.Err(); err != nil {
log.Fatalf("Subscription: %v", err)
}
case <-ticker.C:
if err := job.QueryCounters(&counters); err != nil {
log.Fatalf("QueryCounters: %v", err)
}
b, err := json.MarshalIndent(counters, "", "\t")
if err != nil {
log.Fatal(err)
}
log.Printf("Counters: \n%s\n", b)
}
}
}()
if err := job.Assign(cmd.Process); err != nil {
log.Fatalf("Assign: %v", err)
}
if err := winjob.Resume(cmd); err != nil {
log.Fatalf("Resume: %v", err)
}
if err := job.Assign(stress.Process); err != nil {
log.Fatalf("Assign: %v", err)
}
if err := winjob.Resume(stress); err != nil {
log.Fatalf("Resume: %v", err)
}
if err := cmd.Wait(); err != nil {
log.Fatalf("Wait: %v", err)
}
if err := stress.Wait(); err != nil {
log.Fatalf("Wait: %v", err)
}
// Wait for a signal.
<-done
}
Our odors disappeared after proper sealing of risers with butyl rope. That tip came from hydrojetting service and worked fast.
вывести из запоя капельница [url=https://kapelnicza-ot-pokhmelya-nizhnij-novgorod-6.ru]вывести из запоя капельница[/url]
В этом обзоре мы обсудим современные методы борьбы с зависимостями, включая медикаментозную терапию и психотерапию. Мы представим последние исследования и их результаты, чтобы читатели могли быть в курсе наиболее эффективных подходов к лечению и поддержке.
Посмотреть всё – [url=https://versesoflove.ru/kak-sohranit-lyubov-i-podderzhku-kogda-blizkij-chelovek-stolknulsya-s-alkogolnoj-zavisimostyu/]выведение из запоя в воронеже[/url]
Here’s the latest
• Talks to end war: Trump administration officials are working to arrange a meeting in Pakistan this weekend to discuss an off-ramp to the war, two senior administration officials tell CNN. Iran has taunted the White House by suggesting it may be negotiating with itself. It is still unclear whether Tehran has agreed to any of the terms in a 15-point proposal from the US that sources said was shared with Iran via Pakistan.
[url=https://slon10.at-slon6.cc]slon2 cc[/url]
• US troop deployment: Around 1,000 US soldiers with the Army’s 82nd Airborne Division are preparing to deploy in coming days to the Middle East, sources told CNN.
[url=https://slon9.to-slon5.cc]slon2 to[/url]
• Strikes persist: A residential area in Tehran was hit by an airstrike, according to the Iranian Red Crescent said. Drones struck a fuel tank at Kuwait International Airport, the country’s civil aviation authority said.
[url=https://kra-b5cc.ru]slon8 to[/url]
• Strait of Hormuz: Multiple vessels have passed through the strait since yesterday morning, tracking data appears to show, as Iran says it will charge countries a fee for safe passage through the critical waterway.
slon10 to
https://kr9at.cc
Этот обзор сосредоточен на различных подходах к избавлению от зависимости. Мы изучим традиционные и альтернативные методы, а также их сочетание для достижения максимальной эффективности. Читатели смогут открыть для себя новые стратегии и подходы, которые помогут в их борьбе с зависимостями.
Посмотреть подробности – [url=https://glaznoy-doctor.ru/без-рубрики/vliyanie-alkogolnoj-intoksikacii-na-zritelnuyu-sistemu-pochemu-krasneyut-glaza-i-kak-vosstanovit-mikrocirkulyaciyu.html]частный нарколог на дом анонимно[/url]
This was a fantastic read. Check out abogado de divorcios Coruña for more.
Doğum günü kutlaması için canlı müzik alanı ve pasta izni olan yerler: Diyarbakır escort ilanları
Does anyone know which Roanoke company handles oversized vehicles? licensed Roanoke car shippers
If you’re in retail and you’re trying to sell something nobody
[url=https://kraken2trfqodidvlh4aa337cpzfrhdlfldhve5nf7njhumwr7instad-onion.cc]кракен тор[/url]
wants to buy anymore, like electric typewriters or video tapes, you’re in a world of hurt,”
[url=https://kraken2trfqodidvlh4a7cpzfrhdlfldhve5nf7njhumwr7instad.com]kraken tor marketplace[/url]
said Cohen, who blames Lampert for the store’s current state.
[url=https://kraken-site.shop]кракен ссылка[/url]
“But customers didn’t stop buying circular saws or screwdrivers and hammers or appliances.
If you’re in retail and you sell things people want to buy, your success or failure is entirely
based upon what kind of skill you bring to the table.
He had none.
kraken5af44k24fwzohe6fvqfgxfsee4lgydb3ayzkfhlzqhuwlo33ad onion
https://kraken2trfqodidvlh4aa337cpzfrhdlfldhve5nf7njhumwr7.com
Thanks for the detailed post. Find more at kredyt hipoteczny na dom .
The flame sensor cleaning tip works. If not, Charlotte, NC furnace repair charlotte can replace it quickly.
This was quite useful. For more, visit cheap rent a car near me .
We keep trees at a safe distance now; root intrusion was killing our lines. Planting guidelines came from septic tank sludge cleaning .
This degree of detail in architectural steel job is breathtaking. If you’re checking out options for bespoke barriers, facades, or gateways, look at cupolas — their portfolio is impressive.
Van’da sinema + çay ikilisi ilk buluşma için ideal bence. Eşleşmeleri de bayan escort Van sayesinde buluyorum.
Van’daki ilk buluşma için güzel bir kahve mekanı arayanlara tavsiyem var ama önce siz neleri önerirsiniz? Ben randevuları genelde local van escorts sayesinde ayarlıyorum.
This put up changed into well timed. I recommend locksmith Orlando Florida if you need a identical day locksmith at once.
Hafta sonu rooftop bar turları planlıyorsanız, en iyi manzaralı duraklar için Diyarbakır 24 saat escort işinizi görür.
We tried a summer tidy trim (not a shave) at pet groomer bookings and it looks perfect.
I appreciate having options when it comes down deciding between various procedures offered locally via places such as @a nKeyWord ! Orthodontics
Loved the section on warranties— residential metal roofing Houston taught us how to register for full coverage.
online wettanbieter liste
Visit my blog post: basketball wm wett tipps (https://Basketball-Wetten.com/)
Современный мир высоких технологий предлагает большое разнообразие вариантов регистрации доменных имен. Среди популярных сочетаний выделяется простая и выразительная комбинация `slon1`. Именно такая последовательность стала основой множества доменных адресов, привлекающих внимание пользователей. Простота восприятия делает её идеальной для брендов и веб-ресурсов различного назначения.
[url=https://slon7c.cc]slon7 at [/url]
Одним из интересных направлений стало использование национального домена верхнего уровня (.cc). Таким образом появилось популярное сочетание **slon1.cc**, которое сочетает простую и доступную ассоциацию со словом «слон» и одновременно обозначает принадлежность ресурса к определённой географической зоне. Такое решение способствует быстрому восприятию и идентификации сайта пользователями.
[url=https://slon3at.com]кракен ссылки актуальные 2026 [/url]
Еще одним вариантом стал вариант **slon1.at**, в котором подчеркнута связь с австрийским сегментом сети Интернет. Такой выбор тоже имеет свою специфику и добавляет дополнительные смыслы в восприятие бренда. Благодаря своим уникальным характеристикам этот тип домена активно используется компаниями, ориентированными на европейский рынок.
[url=https://slon8at.net]slon2 at [/url]
Часто владельцы ресурсов выбирают и сокращённую форму записи своего имени. К примеру, такое написание, как **slon1cc**, придаёт сайту дополнительный шарм и облегчает процесс запоминания. Подобная форма часто встречается в международной практике брендирования и отражает общую тенденцию упрощения структуры именования.
[url=https://slon7at.net]рабочие ссылки kraken [/url]
В заключение отметим ещё одну разновидность написания домена — **slon1сс**. Здесь упор сделан на двойное повторение буквы «с», что создаёт особое звучание и запоминающийся эффект. Такая игра букв усиливает привлекательность домена и выделяет ресурс среди прочих аналогичных предложений.
[url=https://slon2cc.net]кракен вход ссылки [/url]
https://slon2.at
официальный сайт кракен ссылки
Great communication around ear hair—remove only when medically indicated and gently. Do you log vet recommendations on file? cat grooming services
For sustainable weight loss with accountability, Melbourne trainers on hire a personal trainer are great.
В этой статье мы обсудим процесс восстановления после зависимостей, акцентируя внимание на различных методах и подходах к реабилитации. Читатели узнают, как создать план выздоровления и использовать полезные ресурсы для достижения устойчивых изменений.
А есть ли продолжение? – [url=https://expert-byt.ru/chto-takoe-kodirovanie-metodom-dvojnoj-blok/]клиника плюс тверь[/url]
Drain field evaluations from commercial septic maintenance saved us from unnecessary excavation.
Thanks for sharing. If somebody demands a identical day locksmith, car key replacement and programming become on the spot and legitimate.
If you’re looking for a clean and professional place for Brazilian waxing in Las Vegas, look no further than Skincare Services Las Vegas !
This was informative. I had a high-quality same day locksmith trip with locksmith Orlando .
Looking for tips on packing IT gear for a Cedar Park office move—found a helpful checklist at Cedar Park commercial movers .
Carmel advice, think about interior trim and sill options during replacement to fit your room vinyl patio doors Fishers
Great insights on declaring flat roofs yr-around. For trade proprietors in Lauderdale County, partnering with local execs is indispensable—relatively with our heat, humidity, and hurricane cycles a knockout post
Tiyatro oyununda dekor ve ışık kullanımı müthişti. İzlenimlerim: Diyarbakır escort reviews
bester esport wettanbieter
My site: wetten in österreich (Kristina)
Moving from Channelview to the Heights was smoother than expected thanks to Cheap movers Channelview ; on-time arrival and transparent pricing.
Müşteri geri bildirimlerini dikkate alan Diyarbakır escort platformu olarak Diyarbakır escort price güven verdi.
The technicians at septic tank maintenance tips respect your property and clean up after the job.
This is very insightful. Check out cosmética artesanal hecha con caléndula for more.
Thanks for sharing! I was unsure where to start, but this helped me find a top Paterson moving company. best cheap movers Paterson
Hydro-jetting cleared scale that snaking missed. The side-by-side comparison on hydro-jetting maintenance convinced us to try it.
Thanks for the useful suggestions. Discover more at abogados Coruña .
We bought our Jupiter home and requested a roofing inspection as part of due diligence. Neal Roofing provided a thorough report that identified some minor issues and correctly assessed the remaining lifespan Roofing Company West Palm Beach
Useful post — office locksmith awarded identical day locksmith assistance that was quick and legitimate.
Hello, I read your blogs on a regular basis. Your writing style is awesome, keep up the good work!
Impressed with the fast-dry method—carpets in Houston dried in hours after scheduling via professional carpet cleaning Houston .
Anyone else surprised by destination port fees? Get those estimates up front; Cheap movers Copperas Cove breaks down common charges for Copperas Cove international moves.
Hydro-jetting really helped clear our stubborn main line. We scheduled after a camera inspection—advice I found on septic tank cleaning cost .
Your tip on getting estimates helped. Sydney NSW sydney rubbish removal gave me a quick quote online.
Kartonpiyer ve tavan göbekleri önce tamir edildi sonra boyandı, ton farkı yok. Aynı hizmet için profesyonel boya badana şirketleri ’e göz atın.