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
}
casino en Costa del Este
online que acepta paypal
Заявку можно оставить в любое время, специалист быстро сориентирует по дальнейшим действиям.
Разобраться лучше – [url=https://kapelnica-ot-zapoya-v-moskve14-4.ru/]kapelnica-ot-zapoya-srochno[/url]
Слушайте кто сталкивался Ситуация критическая Соседи стучат в стену Нужен врач прямо сейчас Короче, врач приехал и поставил систему — нарколог на дом в воронеже недорого Приехал через 40 минут В общем, жмите чтобы сохранить — нарколог на дом недорого [url=https://lechenie.narkolog-na-dom-voronezh19.ru]нарколог на дом недорого[/url] Звоните прямо сейчас Перешлите тем кто в такой же ситуации
Excellent service whenever with SI Service Group! They’re certainly the best Electrical contractor near me in Tupelo electrician near me
I totally agree that Elden Ring revolutionized open-world design. It felt fresh and expansive without being overwhelming, which is no small feat best next gen games 2020s
I ran into the Cloudflare block when trying to access thegamehaus.com and cleared my cookies, but it didn’t help. I’m pretty sure it’s not a browser issue since I also tried on Firefox and Chrome VPN blocked by website
I loved your point about Elden Ring redefining open-world games! It really feels like a fresh breath compared to the usual repetitive quests Browse this site
Thanks for the clear breakdown. More info at lot clearing Volusia County FL .
“I had no idea that having too many leaves could harm my filtration system; thanks for the heads up!” Additional details are available through ###ANYKEYWORD###!” pool maintenance
I totally agree! I often use my phone during my daily bus commute to catch up on podcasts or play quick games – it really makes the time fly by. One tip I’ve found helpful is downloading content beforehand so you’re not stuck if the internet cuts out device compatibility networks
Quality solution every single time with SI Service Group! They’re most certainly the most effective air conditioning company near me in Tupelo.
Had them out recently and the techs were timely, specialist, and had my system cooling quick ac repair
I ran into the Cloudflare block page while trying to access thegamehaus.com and cleared my cookies hoping that would help, but the block still appeared Article source
I was curious if you ever thought of changing the
layout of your site? Its very well written; I love what youve got
to say. But maybe you could a little more in the way of content so people could connect with it better.
Youve got an awful lot of text for only having one or 2 pictures.
Maybe you could space it out better?
I have actually been looking for an outstanding Chiropractor near me in St Augustine and was consistently seeing terrific reviews about Pain Relief Centre chiropractor st augustine
Great insights on casino platform design! I’ve noticed that some sites struggle with slow withdrawals, which affects trust a lot Get more information
I totally agree! When I’m stuck in line at the grocery store, scrolling through my favorite podcasts on my phone makes the wait fly by. One tip I’ve found helpful is to download content ahead of time – no need to worry about weak signal while waiting Additional hints
Small homes can honor cultural and personal routines more easily, whether that’s certain foods, music, or spiritual practices. That was important to our family, and we figured that out through senior living .
I like how this post explains the difference between urgent and non-urgent dental problems. Emergency Dentist Southgate CA is a useful link for emergency dental care.
Your tip about noting how clean and odor-free common areas are is simple but powerful. We include that on our site respite care .
Great breakdown of the way nearby visibility impacts provider corporations. For electricians, displaying up inside the map percent can make a sizeable distinction in lead volume click for more info
Great insights on casino platform design! I’ve noticed that some sites look sleek but struggle with slow withdrawals casino site lag fixes
Your point about trial stays and respite care in some communities is valuable. I learned about short-term trial options through articles on assisted living , which made the idea less intimidating for my dad.
Нижний Новгород, всем привет Близкий человек уже 10 дней в запое Родственники в полном отчаянии Платная клиника просит бешеные деньги Короче, врачи стационара реально вытащили — вывод из запоя стационар с круглосуточным наблюдением Выписали через неделю здоровым В общем, вся инфа по ссылке — вывести из запоя в стационаре анонимно [url=https://kapelnicza.vyvod-iz-zapoya-v-staczionare-nizhnij-novgorod-jkp.ru]https://kapelnicza.vyvod-iz-zapoya-v-staczionare-nizhnij-novgorod-jkp.ru[/url] Звоните прямо сейчас Это может спасти жизнь
https://rovno-hotel.org.ua/
Воронеж, всем привет Ситуация критическая Дети напуганы Нужен врач прямо сейчас Короче, врач приехал и поставил систему — нарколог домой с выездом Дал рекомендации и успокоил семью В общем, не потеряйте контакты — вызов врача нарколога [url=https://lechenie.narkolog-na-dom-voronezh19.ru]вызов врача нарколога[/url] Звоните прямо сейчас Перешлите тем кто в такой же ситуации
our website [url=https://martianwallet.cc]martian wallet[/url]
If you’re shopping around St. Augustine, you’ll quickly understand why citizens claim the best company for homeowners insurance in and near St. Augustine is Fender Insurance Agency homeowners insurance
If you’re searching St. Augustine, you’ll quickly understand why residents claim most reliable agency for auto insurance in and near St Augustine is Fender Insurance Agency car insurance
Thanks for the info. I’m a bit unclear about the wagering requirements on these no deposit slots. If the promotion says 30x wagering, does that apply only to the bonus amount or to any winnings from the bonus as well? Would appreciate some clarity! https://xeon-wiki.win/index.php/Which_Casinos_Are_Easiest_to_Use_for_Total_Beginners%3F
A broken tooth may not always look serious, but it can cause major discomfort if untreated. Emergency Dentist Los Angeles CA
I’ve actually been searching for the best Air conditioning repair work and always kept discovering excellent reviews about King of Home Solutions in Jacksonville ac repair
I’ve tried a few no deposit offers before, but I always get confused about the wagering requirements. Does anyone know if the free spins winnings count towards the max withdrawal limit, or is that separate? It’s hard to find clear info on this. Thanks! Check out here
We keep trees at a safe distance now; root intrusion was killing our lines. Planting guidelines came from Grease Trap Pumping .
I loved the point about Elden Ring redefining open worlds—it’s incredible how FromSoftware created such an expansive, yet intricately detailed world that rewards exploration without hand-holding what counts as a complete game now
Has anyone seen improvements after combining physical therapy with chiropractic care in #BonneyLake? # Sports chiropractor
I appreciate this article highlighting UK casinos with solid RTP slot selections. I’ve found VideoSlots particularly reliable because they provide clear info panels showing the RTP and volatility for each game https://iris-wiki.win/index.php/How_Do_I_Browse_Slots_by_Popularity_Without_Missing_Hidden_Gems%3F
I really enjoyed how the article highlighted the impact of coaching tendencies on prop bets—never thought about how a coach’s play style could shift betting odds that much https://foxtrot-wiki.win/index.php/How_to_Follow_NFL_Betting_Info_Without_Getting_Overwhelmed
This article captures why leadership development should be strategic, not ad hoc. Strategy-aligned leadership planning templates on leadership workshops have helped us get there.
If your Feasterville washer drain overflows, a Plumber Feasterville via plumber feasterville can upsize standpipes and trap vents.
Your emphasis on protecting adjacent surfaces (cabinets, fixtures, etc.) is spot on. Our last contractor, found via commercial painting contractors denver , masked and taped everything with impressive precision.
If you want, I can help you with ethical alternatives to promote your air conditioner site using ac repair .
Great read! I like the tip about using filters to sort games by provider—it definitely makes finding high RTP slots easier. One thing I’m curious about is how to check the volatility of these games since RTP doesn’t tell the whole story https://alpha-wiki.win/index.php/PlayOJO_Casino_%E2%80%93_What_Does_%22Transparency_and_Simplicity%22_Mean_in_Practice%3F
I tried a no deposit slot bonus recently, but the wagering requirements confused me. The terms said 30x, but didn’t specify if it applies only to the bonus amount or winnings too. Has anyone else found this unclear? Would appreciate some clarity here. https://www.animenewsnetwork.com/bbs/phpBB2/profile.php?mode=viewprofile&u=1220739
I completely agree about Elden Ring redefining open-world games. The freedom and depth it offers really set a new standard for exploration and storytelling https://rowanbsll583.almoheet-travel.com/elden-ring-vs-dark-souls-what-makes-it-different
Thanks for this detailed article. I like how you highlighted the importance of checking the info panel for RTP and volatility details before playing. It’s something I often overlook Go to this site
I love how the article highlights the rise of live betting and second-screen viewing during NFL games—makes it way more exciting! I hadn’t realized how much weather and coaching tendencies can influence prop bets https://andysbestchat.lucialpiazzale.com/how-legal-sports-betting-changed-the-way-people-follow-the-nfl
Drain tile that’s never been cleaned is probably a big part of my moisture problem. I’m planning a consultation with Septic Pumping about drain tile cleaning and inspection.
I appreciate the reminder that seeking help is a sign of strength, not weakness. addiction treatment near me
This was quite useful. For more, visit emergency tree removal DeLand FL .
Люди помогите советом Отец не выходит из штопора Соседи стучат в стену Таблетки не помогают Короче, врач приехал и поставил систему — нарколог домой с выездом Приехал через 40 минут В общем, жмите чтобы сохранить — заказать нарколога [url=https://zapoj.narkolog-na-dom-voronezh17.ru]https://zapoj.narkolog-na-dom-voronezh17.ru[/url] Звоните прямо сейчас Перешлите тем кто в такой же ситуации