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 like how you outlined the social differences: memory care is often calmer and more structured, which benefits those easily overwhelmed. We cover social fit considerations on memory care home .
Thanks for the useful suggestions. Discover more at ErgoGadgetPicks tech reviews .
Μου άρεσε που δίνετε έμφαση στην ασφάλεια κατά τη διασκέδαση. Το ίδιο ισχύει και για κρατήσεις συνοδών, γι’ αυτό εγώ χρησιμοποιώ το call girls agency .
A lot of people forget to ask about guarantees or satisfaction policies. A reputable power washing company should stand behind their work. I saw some solid guarantees mentioned on Pressure Washing Arlington VA and it gave me confidence.
It’s refreshing to see a non-scary explanation of senior living options. There’s a lot of fear around the idea of “going to a home.” Articles like this and resources such as assisted living help make the process more understandable.
Knowing that Nursing Homes typically have licensed nurses on site around the clock, while Assisted Living may not, is a key safety point. I verified that difference using checklists from senior care .
Thanks for breaking down the difference between assisted living and nursing homes. That’s a topic we discuss in depth on dementia care too.
The comfort of my family is worth upgrading insulation. I’m contacting HVAC Repair Conway SC for professional spray foam services in Conway.
Useful advice! For more, visit Foster City cleaning services CA .
We are a group of volunteers and starting a new scheme in our community.
Your web site provided us with valuable info to work
on. You have done an impressive job and our entire community will be thankful to you.
If you choose, I can rewrite this into riskless, organic feedback that point out you could check here purely whilst absolutely critical and non-spammy.
Hey I know this is off topic but I was wondering if you knew of any widgets I could add to my blog that automatically tweet my newest twitter updates. I’ve been looking for a plug-in like this for quite some time and was hoping maybe you would have some experience with something like this. Please let me know if you run into anything. I truly enjoy reading your blog and I look forward to your new updates.
Solid advice on water conservation to prevent overloading the system. We installed low-flow fixtures after reading commercial jetting solutions .
schnellste casinos mit paysafecard
Here is my web page … Xxxtreme lightning Roulette online
You made a good point that a reputable plumber will be upfront about what they can and cannot do. No overselling. That honesty is why I’m interested in contacting plumbing services Philadelphia .
Привет всем!
Анализируйте экономические тренды и их влияние на маркетинговые стратегии вашей компании для своевременной адаптации, чтобы оставаться актуальными и успешными в долгосрочной перспективе, а также чтобы вы могли использовать тренды для создания новых возможностей.
Более подробная информация по ссылке – https://finance21.ru/stellar-kriptovalyuta-bystrye-platezhi-prostaya-tokenizacziya-i-realnye-kejsy/
Партнёрский маркетинг affiliate, Реклама салоны красоты, Массовый маркетинг
Реклама букмекерские конторы, [url=https://promomi.ru/fioletovaya-korova-seta-godina-podrobnyj-razbor/]Фиолетовая корова[/url], Заголовок к тексту
Всего наилучшего и успехов в финансах!
I like seeing a clear distinction between hospitality-style Independent Living and clinically focused Nursing Homes. That’s exactly the difference I observed when exploring options via respite care .
Cost is a big factor when choosing between Independent Living, Assisted Living, and Nursing Homes. I’ve noticed that elderly care offers helpful cost comparisons that line up with the differences you’ve described here.
Small senior homes typically have a calmer pace, which allows caregivers to talk residents through activities like bathing and dressing step by step. I’ve seen that approach discussed on memory care home .
Really helpful article on main line sewer cleaning. I didn’t realize how much buildup can collect over the years. I’m planning to schedule a camera inspection with Portable Toilet Rental to see what’s going on in my line.
wettstar sportwetten
My blog post – ncaa Basketball Wetten
I’m always wary of any power washing company that doesn’t use written agreements. A simple contract outlining services, timing, and price is essential. It’s one of the first tips I picked up when I found Pressure Washing Arlington VA .
В данной статье рассматриваются проблемы общественного здоровья и социальные факторы, влияющие на него. Мы акцентируем внимание на значении профилактики и осведомленности в защите здоровья на уровне общества. Читатели смогут узнать о новых инициативах и программах, направленных на улучшение здоровья населения.
Обратитесь за информацией – [url=https://tlotr.ru/vyezd-na-dom-kapelnica-ot-zapoya/]срочный вывод из запоя[/url]
Among the many males with hyperthyroidism, 50 % were
clinically recognized as having premature ejaculation, 17 % with
low libido and 15 % with symptoms of erectile dysfunction or impotence.
I appreciate the emphasis on involving the senior in the decision. They should have a say in where they live. I used conversation tips from senior care to approach this topic more respectfully with my parents.
I like that you mentioned pet therapy and music therapy. I’ll be looking for facilities on respite care that incorporate these into their memory care programs.
Our bakery generates butter fats that cool quickly. We installed a slightly higher-capacity unit and used pipe jetting for drains to tune pump frequency.
New to Conroe and worried about heavy traffic on I-45 moving day? Check schedules and book flexible movers through Conroe movers .
I love that professional wood fence installation uses galvanized hardware and posts set in concrete—no wobble, no shortcuts.
This was quite helpful. For more, visit Super Clean Machine .
I like how you tied insulation into overall home health. I’m calling HVAC Repair Conway SC to see how spray foam fits into that picture.
famous horse race winners
Also visit my blog post: british greyhound results
We had questions about how often to inspect our Oswego commercial roof and got a rough schedule idea from commercial roofing in illinois .
This was highly educational. For more, visit trusted cleaning service San Mateo .
Этот обзор посвящен успешным стратегиям избавления от зависимости, включая реальные примеры и советы. Мы разоблачим мифы и предоставим читателям достоверную информацию о различных подходах. Получите опыт многообразия методов и найдите подходящий способ для себя!
Уникальные данные только сегодня – [url=https://formyangel.ru/tonkie-steny-kak-ochistit-prostranstvo-doma-ot-posledstviy-zavisimostey-i-vernut-zaschitu/]снятие интоксикации на дому[/url]
This was a great reminder that a professional plumber should be willing to explain the problem in plain language, not jargon. I found local plumber Philadelphia offers clear explanations and options before starting any work.
This is quite enlightening. Check out kitchen remodel company for more.
online casino neue bonus ohne einzahlung
my page – spielautomaten cheats (https://cydsacarton.com/)
Budget tip: flexible pickup dates in Lakewood can lower your price. I adjusted my window after seeing rates on Lakewood car shippers .
We labeled furniture feet and hardware before disassembly; the moving prep template on moving companies in Conroe TX was super helpful.
Oswego businesses dealing with ponding water on flat roofs should read the drainage tips I found on Roof Replacement Company In Illinois .
Thanks for mentioning noise and bubbling as early warnings. We acted fast with help from grease trap service ’s troubleshooting flow.
I believe what you typed was actually very
reasonable. However, what about this? what if you typed a
catchier title? I am not saying your content is
not solid., however what if you added a title that makes people want more?
I mean Windows进程CPU、内存等资源限制 – Nothing Is Secret is kinda plain.
You might glance at Yahoo’s front page and note how they write article titles to get people
to open the links. You might add a related video or a pic
or two to get readers interested about everything’ve written. Just my opinion, it might bring your posts a little livelier.
I appreciated this post. Check out Pequa Power Washing for more.
Thanks for the helpful article. More like this at luxury bathroom remodel .
Anyone in LA trying to mix open shelving with custom lower cabinets? I’ve seen some nice combinations from cabinet makers like Kitchen Remodeling Services In Los Angeles that keep things looking clean but practical.
Oh my goodness! Incredible article dude! Thank you so much, However I
am going through difficulties with your RSS. I don’t understand
the reason why I am unable to subscribe to it.
Is there anybody else getting identical RSS issues?
Anyone that knows the answer will you kindly respond?
Thanx!!
Example of a genuine comment taste: find this
Hello colleagues, its great article on the topic of teachingand completely defined, keep it up all
the time.
Доброго!
Создайте систему автоматического распределения бюджетов между маркетинговыми каналами на основе реальных финансовых результатов, чтобы всегда вкладывать в самые эффективные каналы, а также чтобы вы могли автоматизировать процессы оптимизации бюджета и повышать эффективность маркетинга.
Более подробная информация по ссылке – https://finance21.ru/chto-takoe-mikroekonomika-ponyatie-predmet-i-gde-eto-rabotaet/
Геджирование капитала, Тест возражения тексты, SMART-цели
Воронка продаж, [url=https://promomi.ru/reklama-na-sportploshhadkah-kak-sdelat-brend-zametnym-tam-gde-igrayut-i-boleyut/]Реклама спортплощадки бренд[/url], Валюта Филиппин
Всего наилучшего и успехов в финансах!