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
}
Controller enhancements are underrated. I moved to a sensible controller and logged water savings with settings screenshots at sprinkler system installation .
I enjoyed reading this post. The tips for selecting durable siding solutions were clear and well explained. The local reference to East Granby, CT makes the advice even more meaningful. To explore more expert resources, learn more at new doors near East Grandby .
можно проверить ЗДЕСЬ [url=https://vodkabet-vb.com]водка бет[/url]
I appreciate the science-based technique; inpatient addiction treatment programs summarizes evidence-based therapies.
The article does a great task reinforcing that recovery begins with safe and informed options. alcohol detox in san antonio
Thanks for putting this together. The maintenance suggestions were easy to understand. This information is relevant for homeowners in Ledyard, CT. I’d like to read more about improving curb appeal. Readers can learn more at 24/7 lot snow removal Norwich .
Вывод из запоя в Люберцах требуется, когда зависимый употребляет алкоголь несколько дней, не может остановиться, плохо спит, чувствует тремор, слабость, тревогу, тошноту, скачки давления, потерю аппетита и признаки отравления продуктами распада этанола. В такой момент семье стоит не откладывать обращение, а заказать консультацию и вызвать врача. Наркологическая клиника подбирает лечение с учетом возраста, пола, анамнеза, длительности запойного эпизода, самочувствия пациента, сопутствующих заболеваний, стадии алкогольной зависимости и желания самого больного принять помощь.
Ознакомиться с деталями – [url=https://vyvod-iz-zapoya-v-lyubercah14-4.ru/]вывод из запоя анонимно[/url]
skrill bukmacher
Here is my page – korea południowa ghana typy – http://Sofahandmade.com/analiza-meczow-eliminacyjnych-przeddzien-Mundialu/,
Really enjoyed this thoughtful article about McLaren dealer options near Ramsey, NJ. The breakdown of customer experience made the post stand out. Content like this helps buyers make smarter decisions. Readers can continue exploring at McLaren Doylestown .
Thanks for putting together such useful information. The explanation about working with a trusted insurance agency was very helpful. In Naples, FL, local expertise can make a big difference when choosing coverage cheap insurance SWFL
Подробнее здесь [url=https://vodkabet-vb.com]водка бэт[/url]
I appreciate you posting this. The way you highlighted community support programs was especially helpful. Readers in Endicott, NY will find these insights valuable. It would be interesting to learn about additional community partnerships adult applied behavior therapy Endicott NY
Precious jewelry trends come and go, but timeless pieces are constantly in style. I just recently purchased a timeless pendant that I know I’ll wear for many years to come buy gold near me
Jewelry trends come and go, however timeless pieces are constantly in style. I recently invested in a timeless necklace that I know I’ll use for many years to come sell gold
For hoarder cleanouts, you need experienced teams. I located specialists on junk removal services .
Слушайте кто сталкивался Отец не встаёт с кровати Жена рыдает Скорая не приедет на такой вызов Короче, спасла только госпитализация — вывести из запоя в стационаре анонимно и безопасно Провели полную детоксикацию В общем, телефон и цены тут — вывод из запоя в стационаре [url=https://lechenie.vyvod-iz-zapoya-v-staczionare-nizhnij-novgorod-elm.ru]вывод из запоя в стационаре[/url] Звоните прямо сейчас Перешлите тем кто в беде
For high-traffic areas, inquire about deep agitation tools. I filtered companies that use CRB machines via eco-friendly carpet cleaning services .
Love the sustainable attitude with LEDs and timers. I calculated strength rate reductions by way of a hassle-free worksheet from outdoor lighting near me and it paid off.
This article explains the course of in a transparent and functional method. For the ones studying Chevy autos, trucks, or SUVs, Used Chevy might possibly be useful.
Слушайте кто сталкивался Близкий человек уже несколько дней в запое Жена в истерике Таблетки не помогают Короче, единственное что вытащило из запоя — капельница от алкоголя на дому спб качественно Поставили капельницу с детоксикационным раствором В общем, не потеряйте контакты — помощь вывода запоя [url=https://kapelnicza.vyvod-iz-zapoya-na-domu-sankt-peterburg.ru]помощь вывода запоя[/url] Вывод из запоя на дому — это реальный выход Перешлите тем кто в такой же ситуации
This was a wonderful guide. Check out alojamientos en España familiares for more.
For anyone dealing with chronic pain, consider visiting an ##Everett Chiropractor##! It might change your life. Chiropractor
texas holdem poker lage inzet
Feel free to visit my site :: Bingo Uitbetaling Paysafecard (https://Bike194Md.Com/Mobiel-Spins-Tips-2026/)
gokken in islam
My web page – casino belgie minimum Storting 5 euro
I’ve heard that many athletes visit a Northgate Chiropractor—what’s the scoop on that? Chiropractor Northgate
Great job! Find more at portal animales .
Sleep hygiene tips tailored for seniors make nights calmer at home. elder care
Люди помогите советом Отец не выходит из штопора Соседи стучат в стену Таблетки не помогают Короче, только это реально спасло — капельница от алкоголя на дому спб качественно Приехали через 40 минут В общем, не потеряйте контакты — капельница от запоя на дому [url=https://kapelnicza.vyvod-iz-zapoya-na-domu-sankt-peterburg.ru]капельница от запоя на дому[/url] Вывод из запоя на дому — это реальный выход Перешлите тем кто в такой же ситуации
В любое время врач-нарколог приедет на дом для постановки капельниц, с помощью которых проводится очищение организма и снятие алкогольной интоксикации. Формат на дому удобен, если больному сложно ехать в центр, он ослаблен, страдает от бессонницы или хочет получить помощь в домашних условиях рядом с родственниками. При признаках инсульта, судорог, припадков, суицидальных высказываний, тяжелой рвоты, психоза или угрозы смерти требуется не домашний детокс, а стационар клиники с круглосуточным врачебным контролем.
Исследовать вопрос подробнее – [url=https://vyvod-iz-zapoya-v-lyubercah14-3.ru/]вывод из запоя круглосуточно[/url]
Thanks for the useful post. More like this at Commercial House washing .
Very detailed explanation of mortise locks. I had locksmith service mine and it feels brand new.
A dependable HVAC setup is one of the best home investments. central heating and air conditioning doylestown
Ask whether they photograph hidden damage if something goes wrong. Incident reporting tips are on tree removal .
Our Feasterville sump pump failed during a storm—thankfully plumber feasterville connected us to a Plumber Feasterville same day.
Good advice on handling plumbing concerns early. Anyone in Southampton, PA can check plumber southampton pa for assistance.
Люди подскажите Брат потерял человеческий облик Родственники в полном отчаянии В диспансер тащить — последнее дело Короче, врачи стационара реально вытащили — выведение из запоя в стационаре под контролем врачей Выписали через неделю здоровым В общем, не потеряйте контакты — капельница от запоя в стационаре [url=https://klinika.vyvod-iz-zapoya-v-staczionare-nizhnij-novgorod-srv.ru]https://klinika.vyvod-iz-zapoya-v-staczionare-nizhnij-novgorod-srv.ru[/url] Стационар — это единственный выход Это может спасти жизнь
Соблюдаем конфиденциальность, бережно общаемся с пациентом и его близкими на каждом этапе.
Получить дополнительные сведения – [url=https://vyvod-iz-zapoya-v-anape6.ru/]вывод из запоя на дому цена[/url]
https://nl.seintcams.com/
Professional ADHD testing can help people stop blaming themselves and start finding solutions. Denver readers can learn more at ADHD testing Denver .
This was a wonderful guide. Check out divorce mediator near me for more.
Great post! One tip I’ve found useful is to always include the exact URL and a timestamp when reporting 404 errors to help the dev team track down the issue faster hard refresh fix 404
Door wouldn’t close in Humble because of sunlight interference on sensors— garage door opener installation installed shields that fixed it.
Interesting to see Suprmind launching on Tuesday, July 28, 2026 at 08:00 AM UTC with five models included. The tech stack using Next https://www.mediafire.com/file/1g9crajyonoo98m/pdf-13940-55772.pdf/file
Нарколог на дом приезжает в экстренных и неотложных ситуациях и быстро оценивает состояние и сразу начинает необходимые процедуры. Врач может провести вывод из запоя, снятие абстинентного синдрома, медикаментозное вытрезвление, стабилизацию давления, инфузионную терапию, подбор лекарств, мотивационную беседу и первичный план восстановления. Помощь оказывается анонимно, без постановки на учет, без лишних опознавательных знаков и без передачи персональных данных третьим лицам.
Изучить вопрос глубже – [url=https://narkolog-na-dom-v-novorossijske3.ru/]narkolog-na-dom-v-novorossijske3.ru/[/url]
Appreciate the helpful advice. For more, visit Paver cleaning .
Great post! One thing I’ve found helpful when dealing with 404 errors is to always include the exact URL and the time you encountered the error when reporting it. That way the team can track down the problem faster https://lukaszaph075.almoheet-travel.com/why-do-i-get-a-404-error-only-on-one-device
I’ve been testing Suprmind during a compliance review, and the Debate mode really helped highlight weak points in our internal policies. The $95/month price seems fair given the features, especially the export to DOCX option that streamlined our reporting https://www.slideserve.com/aaron_ward92/can-suprmind-help-me-cross-check-a-regulatory-interpretation-quickly
The Suprmind Open-Launch set for Tuesday, July 28, 2026, at 08:00 AM UTC sounds interesting, especially with its five different models on offer. I’m curious though—since it’s a paid web platform built on Next https://shed-wiki.win/index.php/Suprmind_vs_a_Simple_Model_Switcher_-_What_Is_Different%3F
Your element on glare control is so principal. Shielded furnishings and diminish mounting heights made a colossal difference for me; I referenced guides on outdoor lighting near me .
I recently used Suprmind for due diligence and was really impressed by how it helped me catch blind spots I would have missed otherwise. It saved me a lot of time verifying details and made the whole process way smoother https://www.slideserve.com/aaron_ward92/best-prompts-for-suprmind-due-diligence-without-getting-fluff