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
}
We were about to list our Oklahoma City home near United States Postal Service on S Pennsylvania Ave when we discovered Emergency Electrician issues 24 7 emergency electrician near me
Digital advertisng annd marketing approach waas born. For
more keywords to search for targets see http://nanacast.com/100kshoutout
В данном обзоре представлены основные направления и тренды в области медицины. Мы обсудим актуальные проблемы здравоохранения, свежие открытия и новые подходы, которые меняют представление о лечении и профилактике заболеваний. Эта информация будет полезна как специалистам, так и широкой публике.
Узнай первым! – [url=https://collezioni-magazine.ru/cena-privatnosti-i-zdorovya-pochemu-delovye-lyudi-vybirayut-medicinskuyu-pomoshch-na-domu/]капельница после похмелья[/url]
I appreciate just how BSA Insurance claims proponents for policyholders as the best independent adjusters. Observe information at recommended independent adjuster .
For senior moves near Allentown’s West End Theatre District, I booked caring pros via Allentown international movers .
Prowadzę portal ogłoszeniowy i zależało mi na poprawie struktury linków wewnętrznych, dlatego Proboost w Warszawie to trafny wybór dla takich projektów. Podejście oparte na analizie słów kluczowych i budowie linków działa. Doradca marketingowy
If my street has “No Standing” windows, can carriers still load? The dispatcher at Yonkers Auto Transport’s Setup recommended early morning slots in Yonkers.
Before booking, I compared three Detroit shippers— Detroit car transport had the best communication and ETA accuracy.
Precious jewelry patterns reoccur, however timeless pieces are always in style. I recently invested in a timeless pendant that I understand I’ll use for years to come buy gold
Great post. I used to be checking continuously this blog and I’m impressed!
Extremely helpful information specifically the last part :) I maintain such information a lot.
I used to be seeking this particular info for a
very long time. Thank you and good luck.
I think the admin of this web page is truly working hard for his web page,
because here every stuff is quality based information.
Alas, do not simply depend ᥙpon the institution name leh, guarantee үoսr primary youngster
masters maths early, since it remains vital to develop challenge-tackling abilities required fօr future professions.
Jurong Pioneer Junior College, formed fгom a tactical merger, offers a forward-thinking education tһat highlights China preparedness ɑnd worldwide engagement.
Modern campuses provide excellent resources fօr commerce,
sciences, аnd arts, fostering practical skills аnd imagination. Trainees enjoy enhancing programs ⅼike worldwide collaborations ɑnd character-building efforts.
Ꭲhe college’ѕ supportive neighborhood promotes resilience
ɑnd leadership through diverse ϲo-curricular activities.
Graduates ɑre fully equipped foг vibrant professions,
embodying care аnd constant enhancement.
Jurong Pioneer Junior College, developed tһrough the thoughtful merger
of Jurong Junior College ɑnd Pioneer Junior College,
provіdes a progressive and future-oriented education һat puts a special focus օn China readiness, global company acumen, ɑnd cross-cultural engagement tо prepare trainees
foг prospering іn Asia’s dynamic economic landscape.
Ƭhe college’s dual schools ɑre equipped ԝith modern-ɗay, versatile centers including specialized commerce simulation гooms, science development labs, ɑnd
arts ateliers, ɑll created to foster practical skills, creativity, аnd interdisciplinary knowing.
Enhancing scholastic programs ɑre matched bу worldwide partnerships,
suсh as joint projects with Chinese universities and cultural immersion trips,
ѡhich enhance trainees’ linguistic proficiency and international outlook.
Α helpful аnd inclusive community atmosphere encourages strength ɑnd leadership advancement through a large range of cօ-curricular
activities, frоm entrepreneurship clubs to sports teams tһat promote teamwork аnd determination. Graduates ߋf Jurong Pioneer Junior College aгe incredibly ᴡell-prepared fοr competitive professions, embodying the values օf care, constant enhancement,
аnd innovation tһat define tһе institution’s positive ethos.
Hey hey, Singapore moms ɑnd dads, maths іs probbly the highly important primary topic, promoting imagination іn pгoblem-solving
in creative jobs.
Оh man, even if establishment proves fancy, math serves аs tһe decisive subject to cultivates poise in numЬers.
Oh dear, minus robust mathematics duгing Junior College, no matter prestigious
school youngsters ϲould falter ᴡith next-level
equations, ѕo cultivate thіs immediately leh.
Higһ A-level performance leads to alumni networks ᴡith influence.
Listen սp, Singapore parents, math proves рrobably the most
essential primary discipline, promoting creativity fоr issue-resolving
to creative jobs.
mʏ site Best Online Math Tutor, http://Kopac.Co.Kr/Xe/Index.Php?Mid=Board_QwpF53&Document_Srl=1889669,
Great blog you have got here.. It’s difficult
to find quality writing like yours nowadays. I really appreciate people like you!
Take care!!
Passed my Whate Card Course on the first try. Practice quizzes at white card course Perth really helped.
Anyone looking for a trustworthy remodeling contractor in Vancouver WA have to examine General contractor Vancouver WA for a session.
We love a tidy, well-maintained yard—thanks to a great tree service. Learn more at tree service .
Pro tip: ask about packing services and wardrobe boxes—best Cumming movers listed on Cumming moving company include both.
This post nails the essentials. If you still need a crew, check Local movers Lawrence for the Best Lawrence movers with verified reviews.
I found a Plano office with IV sedation by searching preventive dentistry .
выберите ресурсы [url=https://retrocasinogames.com/]casino retro registration[/url]
CS2 casino video games can be enjoyable if you go in with the right mindset and pick legitimate platforms trusted cs2 gambling site
Thank you for providing such a comprehensive and level-headed look at this subject; it is exactly the kind of high-quality reading material I enjoy digesting when I am trying to expand my general knowledge during my downtime.
Watch kids sexual porno video xxx sex
Packing fragile items is always stressful—New Hyde Park international movers recommended by Local movers New Hyde Park made it hassle-free.
Cross-training crews on modular furniture saved us. Houston full service movers dismantled and rebuilt our systems furniture in one day.
ConextSolution adalah perusahaan konsultan ERP dan transformasi digital yang membantu organisasi meningkatkan efisiensi operasional melalui odoo ERP, SAP System, Business Intelligence, dan integrasi sistem.
Sebagai mitra transformasi digital odoo indonesia, kami menawarkan layanan implementasi odoo, jasa implementasi odoo, serta konsultasi
dari tim odoo consultant indonesia yang berpengalaman.
Tidak hanya itu menyediakan jasa ERP indonesia untuk berbagai industri, termasuk ERP manufacturing indonesia dan ERP retail indonesia.
Berbekal pengalaman dalam berbagai proyek, implementasi ERP perusahaan dapat
berjalan lebih efektif dan sesuai kebutuhan bisnis.
Tujuan kami adalah membantu perusahaan membangun sistem
ERP untuk bisnis yang lebih modern, siap berkembang, dan mampu
meningkatkan produktivitas di era digital
saat ini.
Эта публикация содержит ценные советы и рекомендации по избавлению от зависимости. Мы обсуждаем различные стратегии, которые могут помочь в процессе выздоровления и важность обращения за помощью. Читатели смогут использовать полученные знания для улучшения своего состояния.
Кликни, не пожалеешь – [url=https://tvojajbolit.ru/poleznoe/podderzhka-v-lechenii-alkogolnoj-zavisimosti/]вывод из запоя на дому в Костроме[/url]
Make an essentials bin: toiletries, chargers, snacks. It was a lifesaver during my move arranged via Local movers Marietta .
Love the focus on craftsmanship. Our custom trim work from Custom home renovations is unbelievable.
Budgeting tip: ask for flat rates plus stair fees upfront. Best Atlanta Mover’s was transparent about everything.
The insight on consent forms was valuable; waxing technician diploma offers templates aligned with best practices.
Thanks for the clear advice. More at Tree Trimming .
В этой публикации мы предложим ряд рекомендаций по избавлению от зависимостей и успешному восстановлению. Мы обсудим методы привлечения поддержки и важность самосознания. Эти советы помогут людям вернуться к нормальной жизни и стать на путь выздоровления.
Погрузиться в детали – [url=https://womanka.com/zdorove/alkogol-i-zhenskoe-zdorove-pravda-mify-i-puti-zashhity]прокапаться на дому от алкоголя цена[/url]
This is a great tip especially to those fresh to the blogosphere.
Short but very precise information… Many thanks for sharing this one.
A must read article!
Этот информационный материал подробно освещает проблему наркозависимости, ее причины и последствия. Мы предлагаем информацию о методах лечения, профилактики и поддерживающих программах. Цель статьи — повысить осведомленность и продвигать идеи о необходимости борьбы с зависимостями.
Выяснить больше – [url=https://autoexpert174.ru/vyvod-iz-zapoya-effektivnye-metody-i-sovremennye-podhody-k-lecheniyu-zavisimosti/]кодирование по методу довженко цена[/url]
В данной статье мы акцентируем внимание на важности поддержки в процессе выздоровления. Мы обсудим, как друзья, семья и профессионалы могут помочь тем, кто сталкивается с зависимостями. Читатели получат практические советы, как поддерживать близких на пути к новой жизни.
Проверенные методы — узнай сейчас – [url=https://mastersolution.ru/2026/06/06/pohmele-posle-korporativa-kak-prijti-v-formu-i-ne-sorvat-dedlajny/]капельница от похмелья анонимно[/url]
I just used Mome Metals Recycling for my old SUV—highly recommend them if you need a reliable we buy junk cars Naples FL service.
Thanks for masking allow recommendations. In Surprise AZ, I chanced on that street placement normally necessities city approval, however driveway placement didn’t check it out
Эта медицинская заметка содержит сжатую информацию о новых находках и методах в области здравоохранения. Мы предлагаем читателям свежие данные о заболеваниях, профилактике и лечении. Наша цель — быстро и доступно донести важную информацию, которая поможет в повседневной жизни и понимании здоровья.
Познакомиться с результатами исследований – [url=https://fitnessinf.ru/jeffektivnye-sposoby-lechenija-alkogolizma-v-kurske/]кодирование от алкоголизма в Курске[/url]
В этой публикации мы обсуждаем современные методы лечения различных заболеваний. Читатели узнают о новых медикаментах, терапиях и исследованиях, которые активно применяются для лечения. Мы нацелены на то, чтобы предоставить практические знания, которые могут помочь в борьбе с недугами.
Подробности по ссылке – [url=https://runreview.org/detoksikacziya-pri-alkogolizme/]капельницы от похмелья в Курске[/url]
Thanks for the thorough analysis. More info at firma de contadores Saltillo .
I took the Whate Card Course remotely and prepped using resources from white card Perth .
This blog pairs well with a mover who plans. fly guy moving did a pre-move walkthrough of our Elmhurst home and caught a tight hallway issue early.
This was highly educational. For more, visit albergues centro Palas de Rei .
Just finished a studio move near Canal Park—fast, careful, and affordable. Details here: Duluth moving companies .
When top quality concerns in claims, BSA Insurance claims is actually the most effective independent adjuster staff to deal with. See independent insurance adjuster fort insurance adjuster fort myers fort myers independent adjuster fort myers independent insurance independent adjuster fort myers myers fort myers independent fort myers catastrophe adjuster catastrophe adjuster fort myers large loss fort myers fort myers flood adjuster flood adjuster fort myers professional fort myers adjuster best independent adjuster fort top rated fort myers affordable independent adjuster fort trusted independent adjuster fort licensed independent adjuster fort fort myers professional adjuster fort myers adjuster services independent fort myers adjuster fort myers claims adjuster fort myers property adjuster fort myers disaster adjuster fort myers catastrophe service fort myers insurance adjuster .
Этот медицинский обзор сосредоточен на последних достижениях, которые оказывают влияние на пациентов и медицинскую практику. Мы разбираем инновационные методы лечения и исследований, акцентируя внимание на их значимости для общественного здоровья. Читатели узнают о свежих данных и их возможном применении.
Переходите по ссылке ниже – [url=https://supersustav.ru/kkkapelnitsy-ot-pohmelya-chto-nuzhno-znat/]клиника плюс курск[/url]
With havin so much content do you ever run into any problems of plagorism or copyright violation? My site
has a lot of completely unique content I’ve either authored myself or outsourced but it appears a lot of it is popping it up all over the web without my authorization. Do you know any solutions to help prevent content from being stolen? I’d
truly appreciate it.
Эта публикация содержит ценные советы и рекомендации по избавлению от зависимости. Мы обсуждаем различные стратегии, которые могут помочь в процессе выздоровления и важность обращения за помощью. Читатели смогут использовать полученные знания для улучшения своего состояния.
Как достичь результата? – [url=https://zhenskaja-mechta.ru/utro-posle-prazdnika-kak-vosstanovitsya-posle-alkogolya-i-vovremya-zametit-opasnye-simptomy]вывести из запоя капельница на дому[/url]
Prowadzę sklep z kosmetykami naturalnymi i potrzebowałem audytu SEO oraz konfiguracji rich snippets, polecam Proboost przy ul. Hożej w Warszawie jako sprawdzonego doradcę. Pozycjonowanie stron i audyt SEO zostały wykonane profesjonalnie. Doradca marketingowy
Excellent pieces. Keep writing such kind of information on your page. Im really impressed by your site.