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
}
Looking for a Plano dentist who takes PPO plans? I filtered options on dental Implants in plano tx .
It is interesting to see how these apps are shifting toward a more casual gaming feel. It definitely makes the experience more engaging, but I worry about losing track of time https://zoom-wiki.win/index.php/Casino_App_Reviews:_What_Should_I_Trust_and_What_is_Noise%3F
The Winnipeg pool opening always brings back childhood memories of summer fun! winnipeg pool opening
Great insights! Find more at cuidados a domicilio para personas mayores .
Skin prep with gentle exfoliation improved my results. I followed the pre-care checklist on body contouring winnipeg .
If you deal with fluid retention, Lymphatic Drainage Massage can be a game changer. I found a clear beginner’s guide at lymphatic drainage massage winnipeg .
It’s reassuring to know your loved one isn’t getting lost in the crowd. In small senior homes, caregivers notice when someone skips a meal or struggles with walking. That’s a big reason I’ve bookmarked assisted living .
It is interesting to see how these apps are shifting toward a more casual gaming vibe. While the gamification makes things more engaging, I sometimes worry it blurs the line between fun and spending casino app missions and challenges
I never really thought about casinos as a blueprint for my e-commerce site, but the focus on frictionless signup is a huge eye-opener. Reducing those extra form fields could definitely help my conversion rates data security for small business
I’ve definitely had that moment of panic when the range drops suddenly on a cold morning. It’s always a tough call between dropping my speed on the motorway or just stopping for a quick top-up Learn here
Этот обзор медицинских исследований собрал самое важное из последних публикаций в области медицины. Мы проанализировали ключевые находки и представили их в доступной форме, чтобы читатели могли легко ориентироваться в актуальных темах. Этот материал станет отличным подспорьем для изучения медицины.
Узнай первым! – [url=https://freshsight.ru/pochemu-pohmele-eto-ne-prosto-golova-bolit-a-signal-organizma-o-pomoschi/]clinica plus[/url]
Nicely detailed. Discover more at equipo de contadores Saltillo .
I’ve noticed that families feel more welcome and involved in smaller homes, especially when discussing how ADL support should be provided. elderly care encourages that family collaboration.
Thanks for highlighting the importance of personal choice in daily routines. We focus on person-centered care models on respite care .
It is fascinating how architects are now treating circulation as a form of story pacing to guide our emotions through a space. I’ve always felt that the physical transition between rooms can make or break the overall immersion https://wiki-cafe.win/index.php/The_Architecture_of_Attention:_How_Cultural_Institutions_Are_Learning_from_Entertainment_Design
The tip about checking whether they can manage diabetes or other conditions is helpful. I’ll verify specialised care capabilities for each listing on senior care .
This article really hit home for me. I struggle so much with productivity guilt, especially lately while trying to balance full-time work and chasing after an energetic toddler https://wiki-wire.win/index.php/What_happens_to_attention_when_you_never_step_away%3F
Man, game days are the best. I always find myself waking up the next morning just to scroll through the league standings and watch all the highlight reels on loop post game routine
It is honestly refreshing to see these retro titles making such a big comeback. There is something about the simplicity of those old-school mechanics that just hits differently today https://rapid-wiki.win/index.php/Why_Do_I_Feel_More_Connected_in_Chat-Based_Games%3F_The_Evolution_of_Digital_Community
It’s fascinating to see how tribes are balancing their traditional brick-and-mortar resorts with the rise of online gaming https://aged-wiki.win/index.php/The_Regulatory_Divide:_Understanding_Tribal_vs._Commercial_Casino_Oversight
It is interesting to see these apps shifting toward a more casual, social experience. I really enjoy the change! While the gamification makes it feel less intense, I worry about losing track of time More help
I found the point about frictionless signup particularly interesting for my own e-commerce store. It is amazing how much drop-off happens during checkout, but I always worry about balancing that ease of use with necessary security checks developing a digital purchases strategy
This article really hit the nail on the head regarding why I get so hooked on these games. It is definitely the immediate feedback that keeps me coming back for more psychology of mindless scrolling
I completely relate to this. The way the range estimate drops when the temperature hits freezing is honestly quite stressful on long trips. I usually find myself slowing down to 60mph on the motorway just to make it to the next stop comfortably https://travispyuj085.raidersfanteamshop.com/what-does-efficiency-actually-mean-when-you-drive-an-ev
Amazing pointers about vaccination, dog crate training, and gradual intros. Curious about their playroom setup– will take a look at dog day care for more details.
This was very beneficial. For more, visit ferretería online repuestos .
This cleared up a lot of confusion for me. Saved Best AC Repair in Wood River IL for AC Repair in Wood River IL just in case.
It is fascinating how architects are now using circulation as story pacing to control exactly how we experience a narrative space. That physical journey really shifts the entire mood ui parallels in smart building systems
This really hit home for me. As someone juggling a full-time job and chasing a toddler all weekend, the productivity guilt is honestly so hard to shake Click here for more info
Let’s ensure every participant walks away happy after visiting—we want smiles everywhere! pool opening service
A big plus of small homes is that staff can encourage residents to do as much as they safely can on their own, then step in when needed. That’s exactly the kind of approach places like respite care seem to support.
Man, there is nothing quite like the post-game ritual. As soon as the final whistle blows, I am straight into the group chat debating every single call. I spent my entire morning watching highlights on repeat and checking the updated league standings Helpful resources
Appreciate the troubleshooting steps. If you need a technician in Needham MA, try AC repair in Needham MA .
It’s interesting how Independent Living is more about lifestyle and amenities rather than medical support. This article reflects what I’ve learned while researching on assisted living about active retirement options.
I honestly think the appeal is pure nostalgia. There is something so refreshing about going back to simple, pixelated games after playing these bloated modern titles. It feels like taking a deep breath of fresh air https://knoxbfmd479.fotosdefrases.com/the-renaissance-of-tradition-how-classic-games-adapt-to-ai-and-ar
It’s fascinating to see how the industry has shifted since the IGRA 1988 framework was first established. While online platforms are definitely growing, I think there’s still a huge value in the physical resorts that add hotels and conference centers https://www.tumblr.com/forbiddentowertroll/819514915131883520/are-online-casinos-safer-now-than-they-were-years
I totally relate to this. Just this morning, while I was waiting for my coffee at the downtown cafe, I found myself aimlessly scrolling through those quick cooking videos instead of just looking around website
As a small business owner, I often struggle with balancing security with user experience. The point about frictionless signup is spot on; if the barrier to entry is too high, you lose customers immediately mobile checkout optimization guide
I found a great Tacoma chiropractor through Chiropractor in Tacoma and it has changed my life!
I never thought about it this way before, but it makes a lot of sense. I think the reason I get so hooked on these systems is the immediate feedback they provide. It keeps me locked in because I can see how my choices change the outcome right away Click for info
A Kent attorney knows how to challenge lowball offers that insurers present early in the claim process. Injury lawyer near me
I’ve definitely been there with the range anxiety. It is so stressful when the estimate drops suddenly during a long trip. I usually end up checking Zap-Map constantly to see if there is a backup charger nearby if things look grim ev efficiency at motorway speeds
Great post! Fragrance samples are an excellent way to find your next favorite fragrance without spending too
much. Thanks for sharing.
In my experience that perfume samples make
it convenient to explore new brands. Really useful information.
Interesting read! Using cologne samples is an affordable way to find
the perfect scent. Thanks for posting.
Excellent post! Sample-sized fragrances are very convenient, and they offer great
value. Looking forward to more posts.
Check if they offer recurring pickups for businesses. I set up a schedule through junk removal services .
Get a firm scope: rooms, hallways, stairs. I compared packages on same-day carpet cleaning st george utah before booking.
It is fascinating how architects are starting to treat building circulation as a tool for story pacing. I have always felt that the way a room flows can really build tension before the main event https://mackenziechen89.raindrop.page/bookmarks-72027359
I really appreciated this perspective. Honestly, the point about productivity guilt hit home for me practice mindful leisure
There is honestly nothing like the morning after a big game. I spent my whole breakfast scrolling through the London Lions highlights on repeat and blowing up the team group chat with reactions Browse this site
As a self-employed joiner I needed secure, dry storage for my tools. The OBG concrete garage in our Baillieston driveway does the job perfectly. Better than any timber shed and I can see it lasting for decades. concrete garages glasgow
I love that I can now play these retro classics on my phone during my commute. It is the perfect way to scratch that gaming itch in short bursts without needing to sit down for hours how to find new games