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
}
If you’re shopping around St. Augustine, you’ll quickly see why residents state the most reasonable firm for auto insurance in and near St Augustine is Fender Insurance Agency auto insurance st augustine
Leggere questi numeri fa riflettere profondamente sulla realtà del gioco d’azzardo nella nostra regione. Sapere che in Toscana si sono spesi 2,4 miliardi in un solo anno colpisce molto, soprattutto pensando alle conseguenze sulle famiglie https://martinjhkm182.bearsfanteamshop.com/cosa-guardare-nel-2026-se-vuoi-capire-se-l-online-continua-a-crescere-davvero
Combining massage therapy and chiropractic care has helped manage my arthritis pain. Car accident chiropractor Tacoma
Excellent contact inspecting turn-around times for certificate issuance. Mine from book online white card adelaide arrived very same day.
For homes with water softeners, we rerouted discharge based on guidance from septic tank cleaning to protect the tank biology.
Keep an eye on dust shields and seals after muddy jobs; maintenance reminders from drivelines help my crew.
Useful note about hydration IVs. Tampa facilities offering them are on alcohol detox home remedies .
Публикация охватывает основные направления развития современной медицины. Мы обсудим значимость научных исследований, инноваций в лечении и роли общественного участия в формировании системы здравоохранения.
Как достичь результата? – [url=http://www.mamochka.org/139711]частную наркологическую клинику в Белгороде[/url]
Echt stark, wie sich das Stadion-Erlebnis verändert! Besonders die Heatmap finde ich super, weil man so endlich sieht, wie viel unser Zehner wirklich läuft. Das wertet das Spiel extrem auf Heatmap Fußball
Clarify parking and access needs for truck mounts. I arranged ahead through a provider on best carpet cleaners .
Informative piece. We enhanced MFA across our Sheffield users via Managed IT Services .
Leggendo questi dati sugli 8,5 miliardi giocati in Toscana, mi rendo conto di quanto sia diffuso il fenomeno. Non credo serva demonizzare chi gioca, ma è importante osservare con realismo l’impatto economico nelle nostre città https://atavi.com/share/xvfqe8z569u2
Great tips! For more, visit albergue privado Palas de Rei .
Ich finde diese neuen digitalen Matchday-Features echt stark. Besonders die Heatmap hilft mir total dabei, die Laufwege unserer Spieler besser zu verstehen. Das macht das Spiel so viel greifbarer https://tr.ee/SHvGEwUAzi
È impressionante vedere come il gioco si sia spostato interamente sul telefono. È incredibile pensare che nel solo comparto online siano stati mossi 92 miliardi di euro, una cifra che fa davvero paura se pensiamo a quanto sia facile perdere il controllo https://wiki-club.win/index.php/L%E2%80%99onda_digitale:_perch%C3%A9_il_gioco_online_ha_riscritto_le_abitudini_degli_italiani_tra_il_2019_e_il_2024
Food-heavy events need extra sinks— portable toilets explains the best ratios.
Spannender Artikel! Ich ertappe mich immer wieder bei diesen Countdown-Timern mit „Nur noch heute“. Man hat sofort Angst, etwas zu verpassen, obwohl das Angebot morgen meistens noch genau gleich aussieht belohnungszentrum im gehirn durch rabatte aktivieren
Thanks for the clear breakdown. Find more at alquiler turístico en Arzúa .
Quick tip: confirm the Bill of Lading details at pickup and delivery. I learned this when scheduling through local Corpus Christi vehicle shippers with Corpus Christi carriers.
Am apreciat recomandările despre servicii de pompe funebre în București, linkul util este Rip Funerare .
È incredibile pensare a come sia cambiato tutto. Prima vedevi la gente nelle sale bingo di quartiere, ora hanno il casinò direttamente in tasca con lo smartphone. Leggere che nel 2023 sono stati spesi ben 92 miliardi online mi mette davvero i brividi analisi mercato scommesse lazio
Spannender Artikel! Besonders bei Countdowns wie „Nur noch heute“ werde ich leider oft schwach und kaufe Dinge, die ich eigentlich gar nicht brauche. Mein Takeaway ist, dass ich jetzt immer eine Nacht darüber schlafe, bevor ich klicke Besuchen Sie diese Website
È pazzesco vedere come il mercato del retrogaming sia esploso negli ultimi anni. Pensa che ho visto una copia di Pokémon Nero 2 a 150 euro online e sono rimasto davvero sorpreso. Io conservo ancora gran parte dei miei vecchi titoli d’infanzia in soffitta https://atomic-wiki.win/index.php/Perch%C3%A9_le_edizioni_europee_di_giochi_giapponesi_possono_valere_di_pi%C3%B9%3F
פינקו אותנו בסבלנות אינסופית לכל שאלה, פשוט אלופים ב- ייעוץ משכנתאות .
http://digicaze.fr/
L’equipe Digicaze se presente comme une equipe de confiance dediee au le tissu economique francais, qui apporte des solutions sur mesure aux entreprises et particuliers, en priorisant sur la confiance et la transparence. Visitez le site via le lien.
Loved the point about lead-safe practices; mobile sandblasting provided proper containment and PPE on our project.
Früher war ich ohne meine Offline-Karten auf Reisen echt aufgeschmissen. Letztes Jahr in den Alpen haben mir die GPS-Daten den Hintern gerettet, als ich den Pfad verloren habe. Mittlerweile finde ich es aber fast etwas stressig, ständig erreichbar zu sein beste länder für remote work 2024
I appreciate your balanced coverage of both emotional and practical concerns. I’ll mention this post as recommended reading on assisted living .
We matched gutters and fascia trim using the color charts at metal roof replacement —great curb appeal.
Современные онлайн-платформы для азартных игр предлагают широкий спектр развлечений и возможностей для игроков по всему миру. Одной из популярных площадок является rollbit.com, которая славится своим разнообразием игр и щедрыми бонусами. Посетители могут ознакомиться с ассортиментом и выбрать наиболее подходящие развлечения прямо на сайте.
[url=https://rollbit.top]rollbit com [/url]
Для удобства пользователей существует также версия сайта без доменного расширения — rollbit com. Это облегчает доступ к платформе и обеспечивает быстрый вход в личный кабинет. Благодаря интуитивно понятному интерфейсу, новые игроки легко ориентируются и начинают играть без лишних затруднений.
[url=https://rollbit.top]rollbit com [/url]
Сам бренд rollbit зарекомендовал себя как надежный и безопасный ресурс для азартных игр. Он предлагает разнообразные игры, включая кости, рулетки, ставки на киберспорт и многое другое. Высокий уровень защиты и прозрачность делают платформу популярной среди большого числа игроков.
[url=https://rollblt.com]rollbit [/url]
Для новых участников доступны различные акции и бонусы, которые повышают шансы на выигрыш. Важно следить за обновлениями и использовать промо-коды, чтобы получить максимальные преимущества. Регулярные акции и обновления делают игру еще более захватывающей и прибыльной.
[url=https://rollblt.com]rollbit.com [/url]
В целом, rollbit — это современная и удобная платформа, которая объединяет игроков со всего мира и предоставляет им возможность испытать удачу в безопасной среде. Посетите rollbit.com или rollbit com, чтобы начать свое приключение уже сегодня!
https://rollbit.pro
rollbit com
Interessanter Artikel! Besonders das Glücksrad auf vielen Webseiten nervt mich mittlerweile echt. Oft mache ich die Seite sofort wieder zu, wenn so ein Pop-up erscheint https://atavi.com/share/xvfra9zjetgn
È impressionante vedere come il gioco sia passato dalle sale bingo al telefono. Leggere che nel 2023 sono stati giocati oltre 92 miliardi online mi fa davvero riflettere sulla portata del fenomeno concessioni gioco a distanza 2024
I’ve noticed that in smaller assisted living homes, caregivers actually get to know each resident’s routines and preferences, which really improves support for activities of daily living. elderly care looks like it follows that philosophy.
Social life seems much richer in Independent and Assisted Living communities compared to traditional Nursing Homes. I’ve seen many examples of activity calendars on respite care that show how vibrant these places can be.
È pazzesco vedere quanto siano aumentati i prezzi ultimamente. Pensare che una copia di Tekken possa valere 2 https://collinyrnx378.trexgame.net/king-of-fighters-2000-neo-geo-come-si-arriva-a-3-500-5-000-euro
It’s easier to design individualized memory support plans when the caseload is small. Care teams can really focus. I saw this emphasized on memory care and now I see it in practice.
В современном мире онлайн-гейминга популярность платформ для азартных игр постоянно растет. Одной из таких платформ является hash.game, которая привлекает игроков разнообразием игр и удобством использования. Пользователи могут легко получить доступ к играм через официальный сайт bc.co или посетить bcgame.im, чтобы ознакомиться с текущими предложениями и бонусами.
[url=https://bch-casino.games]bc game apk [/url]
Для тех,кто ищет надежные и безопасные развлечения, рекомендовано использовать официальные ресурсы, такие как bc.casino. Там доступны разные игровые автоматы и настольные игры, а также возможность скачать bc game apk для мобильных устройств. Это обеспечивает комфортный и непрерывный игровой процесс без необходимости постоянного подключения к интернету.
[url=https://bchgame.net]bc game code [/url]
Многие игроки задаются вопросом о специальных промоакциях и бонусах. Чтобы получить bc game bonus, необходимо зарегистрироваться и ввести bc game code при пополнении счета. Такие акции позволяют увеличить баланс и получить дополнительные шансы на выигрыш. Также стоит следить за обновлениями, чтобы не пропустить новые акции и bc game bonus.
[url=https://bchgame.net]bc games [/url]
Для постоянных участников существуют программы лояльности и бонусные предложения, связанные с bc games. Важно использовать все преимущества платформы, чтобы максимально повысить шансы на успех. Регулярные игры и участие в турнирах делают игровой опыт более захватывающим и прибыльным.
[url=https://bchh.games]bc.co [/url]
В целом, платформа bc casino предлагает широкий выбор развлечений и выгодных условий для игроков. Регистрация и использование bc game code позволяют получить дополнительные привилегии, а постоянное обновление информации помогает оставаться в курсе всех акций. Играйте ответственно и наслаждайтесь увлекательным миром онлайн-гемблинга!
https://bch-games.casino
bc casino
Pentru detalii despre documente, liste scurte și verificări în București, acest site este util. servicii funerare 24/7
Backflushing during pumping prevented sludge from sticking in our tank. Picked up that technique from hydro-jetting .
Don’t overlook material selection—DOM steel vs chromoly vs aluminum affects weight and durability; I found a helpful breakdown at custom U bolts .
Früher habe ich mich bei Städtetrips immer mit Papierkarten durchgeschlagen, aber bei meinem letzten Urlaub in Rom hat mir Google Maps echt das Leben gerettet. Es ist schon Wahnsinn, wie entspannt man heute durch fremde Städte navigiert https://www.tumblr.com/sweetearthquakethorn/818333544973795328/wie-sch%C3%BCtze-ich-meine-konten-unterwegs-am-besten
I appreciate seeing content like this that early medical care makes a
difference. A clear legal strategy often leads to stronger outcomes.
Personal Injury Lawyer near me
Your explanation of SWMS fits perfectly with what I discovered through white card course adelaide sa modules.
È incredibile vedere come il mercato del retrogaming sia esploso ultimamente. Ho visto copie di Pokémon Nero 2 vendute a 150 euro e mi mangio le mani. Da ragazzino buttavo via le scatole di cartone senza pensarci troppo aste concluse eBay
Современные [url=https://uzip-avtomat.ru/]узип для солнечных батарей[/url] обеспечивают надежную защиту от перенапряжений.
Подробная информация на сайте – http://uzip-avtomat.ru
узип
узип автомат
заказать узип
Helpful suggestions! For more, visit albergue Palas de Rei .
Der Artikel spricht mir wirklich aus der Seele. Letzten Sommer in Portugal war mein WLAN im Hotel so schlecht, dass ich mein Zugticket nicht herunterladen konnte. Das war echt stressig technik gadgets für lange flüge
Here’s the latest
• Talks to end war: Trump administration officials are working to arrange a meeting in Pakistan this weekend to discuss an off-ramp to the war, two senior administration officials tell CNN. Iran has taunted the White House by suggesting it may be negotiating with itself. It is still unclear whether Tehran has agreed to any of the terms in a 15-point proposal from the US that sources said was shared with Iran via Pakistan.
[url=https://krab13cc.ru]slon5 to[/url]
• US troop deployment: Around 1,000 US soldiers with the Army’s 82nd Airborne Division are preparing to deploy in coming days to the Middle East, sources told CNN.
[url=https://krab13at.ru]slon5.cc[/url]
• Strikes persist: A residential area in Tehran was hit by an airstrike, according to the Iranian Red Crescent said. Drones struck a fuel tank at Kuwait International Airport, the country’s civil aviation authority said.
[url=https://at-krab5-ccc.ru]slon7.to[/url]
• Strait of Hormuz: Multiple vessels have passed through the strait since yesterday morning, tracking data appears to show, as Iran says it will charge countries a fee for safe passage through the critical waterway.
slon4 to
https://https-slon2.ru
Settlement cracks often trace back to poor backfill. We had aggregates redo sections with proper compaction.
For LGBTQ-friendly detox services in Tampa, effects of alcohol detox highlights inclusive providers.