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
}
Excellent blog post. I definitely love this website.
Stick with it!
Этот обзор медицинских исследований собрал самое важное из последних публикаций в области медицины. Мы проанализировали ключевые находки и представили их в доступной форме, чтобы читатели могли легко ориентироваться в актуальных темах. Этот материал станет отличным подспорьем для изучения медицины.
Не пропусти важное – [url=https://praga.spb.ru/2026/06/08/chelovecheskiy-faktor-na-obekte-kak-sohranit-trezvost-i-bezopasnost-v-stroitelstve/]поставить капельницу от похмелья[/url]
If you’re moving with pets in Vineland, schedule a quiet room and label it—our movers from Office moving companies Vineland respected the “pet zone” and kept doors closed.
Thanks for explaining incision placement choices; visual examples at plastic surgery .
ссылка на сайт [url=https://trip10.us]tripscan официальный[/url]
If you need weekend availability, workplace first aid Jondalup lists plenty in Joondalup.
Главная [url=https://trip20.us/]трипскан вход[/url]
I added a hidden ironing board after spotting it on closet organizers Dallas .
I booked a kid’s first dental visit in Aurora through dentist Aurora .
В этом исследовании рассмотрены методы лечения зависимостей и их эффективность. Мы проанализируем различные подходы, используемые в реабилитационных центрах, и представим данные о результативности программ. Читатели получат надежные и научно обоснованные сведения о данной проблеме.
Изучить вопрос глубже – [url=https://modnuesovetu.ru/zabolevaniya/vozvrashhenie-k-zhizni-effektivnye-strategii-vosstanovleniya-posle-prazdnichnyh-zastolij.html]капельница от похмелья на дому[/url]
This is highly informative. Check out actividad industrial Campollano for more.
Wound healing with cellular matrices shows promise; case series and dressing protocols here: stem cell therapy .
Thanks for explaining recovery timelines; I found helpful prep tips at plastic surgeon Michigan .
I’ve been playing around with the idea of having five different models debate in one thread, and it’s a fascinating concept. Seeing them tackle a problem from different angles certainly highlights their unique biases Take a look at the site here
Thanks for covering soundproofing. For quiet flooring solutions in Charlotte, professional flooring installation service can help.
I have been using the Research Symphony feature for my literature reviews lately. It saves me so much time when comparing outputs across different models ai red teaming for security
Well done! Find more at mejores abogados Coruña .
В этой статье рассматриваются различные аспекты избавления от зависимости, включая физические и психологические методы. Мы обсудим поддержку, мотивацию и стратегии, которые помогут в процессе выздоровления. Читатели узнают, как преодолеть трудности и двигаться к новой жизни без зависимости.
Ознакомиться с отчётом – [url=https://paganism-info.ru/2026/06/07/remont-bez-vygoraniya-prakticheskie-strategii-sohraneniya-resursov-i-zdorovya/]прокапывание от алкоголя на дому цена[/url]
I’ve been keeping an eye on Suprmind since I saw they were founded in 2025. I gave their platform a quick spin yesterday, and it seems promising, though I’m still testing the output quality follow this link
I’ve been testing Suprmind for a few days, and the five models arguing is definitely an interesting concept. It really highlights how different their reasoning styles are. My main concern is that they might just go in circles when they disagree https://wiki-planet.win/index.php/Stress-Testing_Your_Strategy:_Using_Suprmind_for_High-Stakes_Edge_Case_Analysis
I have been using the Research Symphony feature lately and it really helps cut through the noise when I am working on complex projects. It is so much faster than toggling between different tabs manually Click for info
What I value most about great CS2 casino platforms is openness and assistance. When you have fast reactions from staff and clear information about odds, it feels a lot safer CSGO provably fair gambling site
I’ve been experimenting with Suprmind for a few days now and it’s an interesting addition to the space. I noticed they currently have five models available to test agentic AI platform
I find the idea of five models debating in a single thread really fascinating. It definitely highlights the differences in how they reason through complex problems https://rentry.co/qnaq82iy
I have been using Suprmind for my deep-dives lately, and the Research Symphony feature is genuinely helpful for organizing complex topics. It saved me quite a bit of time on my last project shared context ai for teamwork
I have been testing the five models available on Suprmind, and the consistency is surprisingly good for a newer platform. It feels like a solid alternative to the current market leaders https://lukaszaph075.almoheet-travel.com/suprmind-reddit-review-what-did-people-actually-test-in-the-wild
Retinal cell therapy pipelines are advancing; side-by-side of RPE strategies here: Peptide therapy .
lizenz sportwetten deutschland
Also visit my blog post; Fussballwetten-de.com
Great insights! Discover more at honorarios abogado Coruña .
В этой публикации мы предложим ряд рекомендаций по избавлению от зависимостей и успешному восстановлению. Мы обсудим методы привлечения поддержки и важность самосознания. Эти советы помогут людям вернуться к нормальной жизни и стать на путь выздоровления.
Где почитать поподробнее? – [url=https://zazdorovie.net/zabolevaniya/31635_postoyannaya-ustalost-i-apatiya-pochemu-postoyanno-hochetsya-spat-i-net-sil]наркодиспансер воронеж[/url]
This was highly educational. For more, visit albergue en Palas de Rei con wifi .
The budget-friendly options you outlined are great. I’ll explore them and link to Professional Holiday Lighting Vancouver
Отдельной категорией услуг является ремонт однокомнатной квартиры, который в Москве часто выбирают как для личного проживания,
[url=https://designapartment.ru/remont-odnokomnatnoj-kvartiry-pod-klyuch/]дизайн дома москва [/url]
так и для сдачи в аренду, поэтому здесь ключевыми факторами выступают эргономика и визуальное увеличение пространства,
[url=https://designapartment.ru/dizajn-interera-v-moskve/]ремонт 4 комнатной квартиры [/url]
а цена такого ремонта под ключ обычно рассчитывается комплексно. Параллельно с городским жильем высок спрос на ремонт домов, стоимость которого складывается из фасадных работ, кровельных систем, инженерной инфраструктуры и внутренней отделки, что требует от подрядчика расширенной лицензии и опыта загородного строительства.
[url=https://designapartment.ru/dizajnerskij-remont/]ремонт коттеджей [/url]
Чтобы заказать ремонт квартиры в новостройке или на вторичном рынке,
[url=https://designapartment.ru/remont-dvuhkomnatnoj-kvartiry/]заказать дизайн проект двухкомнатной квартиры [/url]
стоит довериться специалистам, знакомым с технологиями усадки и особенностями черновой отделки застройщика, ведь в Москве жилье часто сдается с полной или предчистовой подготовкой. Достаточно связаться с компанией, предоставляющей полный цикл услуг: от бесплатного замера до финальной уборки, чтобы гарантировать, что ремонт квартир в Подмосковье или в пределах МКАД будет выполнен с соблюдением единых стандартов качества, а клиент получит готовое жилье, полностью соответствующее его ожиданиям.
https://designapartment.ru/dizajn-interera-v-moskve/dizajn-proekt-doma-v-moskve/
ремонт квартир
Your note on surgeon-patient fit is key; interview red flags are listed at cosmetic surgery .
Excellent discussion on extracellular matrix cues; we cataloged ECM-derived signals by tissue: Regenerative Medicine Houston, TX .
More than $100,000 worth of escargots were stolen from a French snail farmer earlier this week, French media reported, leaving the supplier scrambling to replenish its stock in time for the holiday season.
[url=https://kra-50at.net]официальный ссылка kraken[/url]
“This is really not the post that we thought we would write approaching the holidays,” L’Escargot Des Grands Crus wrote in a post on Facebook Tuesday. “We were victims of a burglary and our stock of fresh and frozen snails was stolen.”
[url=https://kra57-cc.com]kra46 at[/url]
A family business, L’Escargot Des Grands Crus breeds around 350,000 snails annually, preparing the escargots “with the greatest care,” according to its website.
[url=https://kra-52-cc.net]ссылка на кракен в браузере[/url]
The snail theft is “a shock, incomprehensible and a real blow for all of the team,” the farm, which is based in Bouzy, northeastern France, said on Facebook.
Overnight from Sunday into Monday, thieves entered the farm undetected and broke into the buildings housing the snails, French public broadcaster France Info reported. Th
kra39 cc
https://https-kra55.cc
The step-by-step approach makes DIY installation feel doable. Sharing this with my neighbors who love festive decor, and I’ll drop a link to Top Rated Govee Installation Vancouver
The beard split-end solutions worked fast; trimmer and oil from vintage barbershop helped.
Helpful breakdown of liposuction areas; candidacy criteria at cosmetic surgeon .
Bursa’da evimi boyatmayı düşünüyorum, kaliteli işçilik arayanlar için Bursa boya ustası gerçekten faydalı bir kaynak oldu; fiyat/performans ve renk seçimi konusunda güzel ipuçları var.
The choking demo was eye-opening—Joondalup trainer booked via affordable Jondalup first aid made it stick.
Great article on conserving negligent parties liable. In Everett, having a committed wrongful loss of life legal professional can make the entire big difference when handling insurers and navigating the statute of barriers check here
Scaffold design matters—our comparison of natural vs synthetic biomaterials might add context: Regenerative Medicine Houston, TX .
Thanks for differentiating mini vs. micro-needling; indications at plastic surgeon Michigan .
Beautiful insights on liturgy and the way weekly worship shapes our hearts. Our congregation just lately included a sensible call-and-reaction and it’s deepened engagement across generations her latest blog
For anybody battling drafts, do not forget the limit and sill pan information. Proper shimming and sealed flashing are non-negotiable. I learned a couple of wise set up actions from replacement window installers .
Thanks for the helpful article. More like this at abogados Coruña .
This was helpful. It’s easy to overlook how much weather can affect a move in New Jersey, especially when navigating sidewalks and loading zones. Office moving companies Hoboken
If you’re in Mission Viejo and evaluating block wall concepts for privacy or noise relief, confirm your contractor can deal with HOA approvals and sloped a great deal see this here
The durability tips are invaluable. For a reliable Charlotte flooring contractor, reach out to vinyl floor repair Charlotte .