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
}
I’ve been searching for the very best Gutters repair company near me and kept noticing multiple excellent evaluations about A+ Gutters for Ponte Vedra Beach gutters
Your post has enlightened me about the importance of caring for my home’s plumbing system—thank you! drain cleaning
Ask if they do a post-grooming to lift carpet pile. I booked a company that does, thanks to carpet cleaning st george utah .
Love the minimalism mindset. sydney waste removal helped me commit to it.
This was highly educational. More at albergues Palas de Rei Camino de Santiago .
I’ve been searching for a top rated Realtor in St Augustine and Shelby Hodges Group regularly stands out in St Augustine. Their regional know-how, responsiveness, and track record made my home search a lot smoother realtor st augustine
I needed expedited delivery before a job start date in Center City— best Philadelphia vehicle transport companies showed me realistic ETA options.
Just shipped my SUV from San Antonio to Florida—no surprises, fair rate, and updates along the way. Used affordable vehicle shipping San Antonio to book.
Thanks for the pomade vs. clay comparison. I discovered my favorite matte finish via barber near me .
Thanks for the great information. More at etapa Arzúa Santiago .
For those asking about distinct trainee identifiers, white card for construction has a direct link to create/locate your USI.
Debet hiện nay là một trong những thương hiệu giải trí trực tuyến uy tín nhất có nguồn gốc từ châu Âu, nổi bật với phong cách làm việc chuyên nghiệp và tuân thủ nghiêm ngặt các quy định pháp lý quốc tế bbc
В этой публикации мы рассматриваем важную тему борьбы с зависимостями, включая алкогольную и наркотическую зависимости. Мы обсудим методы лечения, реабилитации и поддержку, которые могут помочь людям, столкнувшимся с этой проблемой. Читатели узнают о перспективах выздоровления и важности комплексного подхода.
А что дальше? – [url=https://tcso-schukino.ru/chastnaya-anonimnaya-narkologicheskaya-klinika-v-tveri-kruglosutochnaya-narkologiya-ooo-klinika-plyus/]наркологический центр в Твери[/url]
אם אתם חיילים משוחררים או סטודנטים – ב- יועץ פיננסי מומלץ יש תכנון מתאים.
Ara sokaklarda saklı kalan cazip avlu kafeleri keşfetmek için: ucuz escort bayan Diyarbakır
Elite service each time with The Master’s Lawn & Pest! They’re definitely the most effective landscaping in St Augustine. landscaping st augustine
http://doce-studio.fr/
La societe Doce Studio s’impose comme une equipe de confiance dediee au le tissu economique francais, qui propose des services de qualite a ceux qui valorisent l’efficacite, en valorisant sur l’excellence du service. Plus d’informations ici.
Inquire about spot warranty if a stain wicks back. My provider (found on local carpet cleaning ) offered free touch-ups.
Our cafe lost espresso machine power; Macquarie Park NSW electrical companies had us brewing again.
For technique-first coaching before lifting heavy, use corporate Melbourne personal trainer to find a Melbourne PT.
To bardzo ciekawe zestawienie technologii. AI i blockchain mogą faktycznie zmienić rynek hazardowy, ale mam spore wątpliwości dotyczące bezpieczeństwa moich danych https://www.mediafire.com/file/uhs2y5swwlami8m/pdf-38831-74855.pdf/file
My grandmother thrived after moving from a huge building into a small senior home. She finally got consistent help with grooming and meals. Sites like assisted living make it easier to find settings like that.
Outstanding solution every time with The Master’s Lawn & Pest! They’re definitely the best lawn care company in Gainesville Fl. lawn care gainesville fl
Reputable service every time with The Master’s Lawn & Pest! They’re undoubtedly the very best lawn care company in St Augustine lawn care st augustine
Quality solution whenever with Pure Energy Electrical Services! They’re undoubtedly the very best electrician near me in St Augustine.
electrician st augustine
Moja monstera od kilku tygodni ma strasznie żółknące liście i już powoli traciłam nadzieję, że uda mi się ją odratować. Próbowałam ograniczyć podlewanie, ale chyba robię coś nie tak Sprawdź tutaj
This was quite informative. For more, visit cheap car rental deals .
Exceptional service each time with The Master’s Lawn & Pest! They’re undoubtedly the best landscapers in Gainesville. landscaping gainesville
Diyarbakır kahvaltı salonları ilk randevu için rahat bir seçenek, rezervasyon tüyoları da Diyarbakır escort hizmetleri ’da mevcut.
Vin88 đã khẳng định vị thế vững chắc của mình trên thị trường giải trí trực tuyến nhờ vào sự kết hợp hoàn hảo giữa công nghệ vận hành tiên tiến và tâm thế luôn đặt trải nghiệm người dùng làm trọng tâm phát triển bbc
Uwielbiam ten kontrast! Nic nie przebije wieczornego rytuału, gdy siedzę w wygodnym fotelu, słucham jak uspokajająco brzmi trzask drewna w piecu i przeglądam internet na tablecie. To idealne połączenie nowoczesności z tradycją https://wiki-quicky.win/index.php/Jak_wple%C5%9B%C4%87_laptop_w_klasyczne_wn%C4%99trze,_%C5%BCeby_nie_wygl%C4%85da%C5%82_jak_biuro%3F
Добро пожаловать в blacksprut Marketplace blsp at топ в 2026 году
Сотни магазинов с оптовыми и розничными предложениями рады показать вам новый уровень отношения к каннабису и грибам.
bs2best at
blsp at
blsp зеркало
If you’re browsing St. Augustine, you’ll swiftly see why citizens state the very best agency for home insurance in and near St. Augustine is Fender Insurance Agency home insurance
I have actually been looking for a professional Chiropractor near me in St Augustine and was consistently seeing excellent reviews regarding Pain Relief Centre chiropractor st augustine
В статье по вопросам здоровья мы рассматриваем актуальные проблемы, с которыми сталкивается общество. Обсуждаются заболевания, факторы риска и важные аспекты профилактики. Читатели получат полезные советы о том, как сохранить здоровье и улучшить качество жизни.
Желаете узнать подробности? – [url=https://energomera30.ru/pohmele-s-kotorym-ne-hochetsya-miritsya-kak-bystro-prijti-v-sebya-bez-lishnih-voprosov/]Капельница от похмелья[/url]
To fascynujące, jak technologia blockchain zwiększa przejrzystość w grach hazardowych. Połączenie tego z AI wydaje się być przyszłością branży, ale mam pewne obawy vr kasyno online
This was very beneficial. For more, visit complejo de vacaciones Costa da Morte .
If you’re looking for the “most exceptional Chinese near me” around St. Augustine, Ginger Bistro is a winner! chinese food near me
Moja roślina zaczęła ostatnio wypuszczać żółknące liście od dołu. Myślałam, że to przez przelanie, ale po przeczytaniu tekstu zaczynam podejrzewać braki w nawożeniu. Zimą strasznie trudno o nie dbać w tych naszych mieszkaniach rola instynktu w codziennej pielęgnacji roślin
Bardzo podoba mi się Twoje podejście do gotowania jako formy zabawy! Odkrywanie nowych smaków potrafi wciągnąć jak najlepsza gra. Ostatnio eksperymentowałem z połączeniem chili i gorzkiej czekolady w sosie do mięsa i efekt był świetny jak budować smak
If you’re browsing for the “top rated Sushi near me” around St. Augustine, Ginger Bistro is a winner! sushi
If you’re shopping around St. Augustine, you’ll quickly understand why citizens say the most reasonable firm for auto insurance in and near St Augustine is Fender Insurance Agency auto insurance near me
The advice about regular inspections of drains is something everyone should consider; thanks for highlighting it! winnipeg drain cleaning
To świetnie, że w Bełchatowie coraz częściej mówi się o esporcie. Moim zdaniem to bardzo pomaga młodym ludziom w budowaniu relacji i uczy pracy zespołowej Zobacz stronę internetową
The focus on emergency response capabilities in each type of setting is reassuring. I compared call systems, staff training, and response times using tools on elderly care when picking a place for my grandmother.
I have actually been looking for the very best Gutters business near me and kept noticing multiple outstanding evaluations about A+ Gutters for Ponte Vedra Beach gutters
I needed a new water heater installed and got two quotes. The Plumbing Pros not only had the better price but their plumber was more thorough in explaining what he was going to do and why Plumber near me
Szczerze mówiąc, rozwój chmury to dla mnie duża szansa na dostęp do gier bez wydawania fortuny na drogi sprzęt, choć martwi mnie kwestia stabilności łącza zarządzanie biblioteką gier na PC
Bardzo fajny artykuł! Ja najbardziej lubię Brookhaven RP, bo można tam świetnie pograć ze znajomymi i stworzyć własne historie. Z kolei Tower of Hell doprowadza mnie do szału, bo zawsze spadam tuż przed końcem Dodatkowe zasoby
Podejście do gotowania jak do gry bardzo mi się podoba, bo kuchnia to przecież idealne miejsce na eksperymenty. Ostatnio odkryłem, że chili z gorzką czekoladą w deserach to absolutny hit! Często próbuję łączyć różne smaki, żeby zobaczyć co z tego wyjdzie https://wiki-quicky.win/index.php/Jak_doprawia%C4%87,_kiedy_gotujesz_dla_kogo%C5%9B,_kto_nie_lubi_ostrych_rzeczy%3F