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
}
It’s essential to have someone who understands the local laws when facing family disputes—discover how at Estate Planning Attorneys in Maryland !
Smile contouring with enamel shaping offers subtle refinements. Learn more at root canal treatment in pico rivera .
Современный мир высоких технологий предлагает большое разнообразие вариантов регистрации доменных имен. Среди популярных сочетаний выделяется простая и выразительная комбинация `slon1`. Именно такая последовательность стала основой множества доменных адресов, привлекающих внимание пользователей. Простота восприятия делает её идеальной для брендов и веб-ресурсов различного назначения.
[url=https://at-slon9.cc]slon8.cc [/url]
Одним из интересных направлений стало использование национального домена верхнего уровня (.cc). Таким образом появилось популярное сочетание **slon1.cc**, которое сочетает простую и доступную ассоциацию со словом «слон» и одновременно обозначает принадлежность ресурса к определённой географической зоне. Такое решение способствует быстрому восприятию и идентификации сайта пользователями.
[url=https://slon4at.com]kraken даркнет рынок ссылки [/url]
Еще одним вариантом стал вариант **slon1.at**, в котором подчеркнута связь с австрийским сегментом сети Интернет. Такой выбор тоже имеет свою специфику и добавляет дополнительные смыслы в восприятие бренда. Благодаря своим уникальным характеристикам этот тип домена активно используется компаниями, ориентированными на европейский рынок.
[url=https://slon9cc.net]slon8.cc [/url]
Часто владельцы ресурсов выбирают и сокращённую форму записи своего имени. К примеру, такое написание, как **slon1cc**, придаёт сайту дополнительный шарм и облегчает процесс запоминания. Подобная форма часто встречается в международной практике брендирования и отражает общую тенденцию упрощения структуры именования.
[url=https://slon1cc.com]рабочая ссылка кракен [/url]
В заключение отметим ещё одну разновидность написания домена — **slon1сс**. Здесь упор сделан на двойное повторение буквы «с», что создаёт особое звучание и запоминающийся эффект. Такая игра букв усиливает привлекательность домена и выделяет ресурс среди прочих аналогичных предложений.
[url=https://slon7cc.com]slon8.at [/url]
https://slonl7.cc
slon6 at
Mieszkam w UK od kilku lat i przyznam, że system NHS bywa wymagający. Najtrudniej jest na początku, szczególnie jeśli chodzi o rejestrację do GP i długie kolejki do specjalistów jak rozmawiać z lekarzem o medycznej marihuanie
Kitchen remodeling can be daunting, but your tips make it seem doable! Excited to learn more from you at Kitchen Remodeling Los Angeles !
I really appreciate these tips! We started looking into seats recently, but the biggest struggle has been finding a helmet that actually fits my daughter’s head without wobbling around. It makes me nervous about safety on bumpy roads sun screen for baby on bike ride
Pope Leo XIV celebrated the first Christmas since his election by denouncing the suffering of people of Gaza – taking shelter in tents from the “rain, wind and cold” – and by calling for the guns to fall silent in Ukraine.
[url=https://https-mellstroy.com]mellstroy com[/url]
On Christmas Day, the first US-born pope, offered the traditional “Urbi et Orbi” blessing (“To the City and to the World”) from the balcony of St Peter’s, surveying a world speckled with conflicts from Yemen to Myanmar, and calling for compassion towards those who have fled their homelands to seek a future in Europe and America.
[url=https://https-mellstroy.com]мелстрой casino[/url]
Leo, who was elected on May 8, said Thursday that Jesus Christ is “our peace” because he “shows us the way to overcome conflicts, whether interpersonal or international. With his grace, we can and must each day our part to reject hatred, violence and opposition, and to practice dialogue, peace and reconciliation.”
[url=https://https-mellstroy.com]mellstroy[/url]
The pontiff began by asking for “justice, peace and stability” for Lebanon, the Palestinian territories, Israel and Syria. Later, he said that, by becoming man, “Jesus took upon himself our fragility,” allowing him to identify “with those who have nothing left and have lost everything, like the inhabitants of Gaza.”
Leo celebrates Christmas Holy Mass at the Vatican.
Leo celebrates Christmas Holy Mass at the Vatican. Yara Nardi/Reuters
Leo holds an incent burner at St Peter’s Basilica.
Leo holds an incent burner at St Peter’s Basilica. Tiziana Fabi/AFP/Getty Images
The pope’s first Christmas since his election took place in wet and cold conditions, but that failed to deter large crowds from coming out to hear his message.
Earlier during Mass, he asked how, at Christmas, “can we not think of the tents in Gaza, exposed for weeks to rain, wind and cold.” With more than 400,000 homes destroyed during Israel’s war against Hamas, Gazans are being forced to choose this winter between living in tents exposed to the elements or living inside buildings that could collapse any minute.
“Fragile is the flesh of defenseless populations, tried by so many wars, ongoing or concluded, leaving behind rubble and open wounds,” Leo said. He quoted an Israeli poet, Yehuda Amichai, who called for peace to blossom “like wildflowers.”
Related article
The acting Latin Patriarch of Jerusalem Pierbattista Pizzaballa attends a morning Mass at Saint Catherine’s Church, in the Church of the Nativity, in Bethlehem, in the Israeli-occupied West Bank December 25, 2025. REUTERS/Mussa Qawasma
Christmas celebrated once again in Bethlehem but West Bank suffering persists
Later during his Christmas message, he called for compassion towards those “who are fleeing their homeland to seek a future elsewhere, like the many refugees and migrants who cross the Mediterranean or traverse the American continent.” He offered Christmas greetings in different languages including Italian, English, Arabic, Chinese, Polish.
Since his election, Leo has highlighted the plight of those suffering of those in Gaza, and has been outspoken by calling for the better treatment of migrants. In his first major interview in September, the American pope voiced concern over “some things” happening in the country of his birth, highlighting the significance of a letter his predecessor, Pope Francis, had sent to US bishops earlier this year, rebuking the administration’s deportation plans.
mellstroy casino
https://mellstro.com
Эта статья освещает различные аспекты освобождения от зависимости и пути к выздоровлению. Мы обсуждаем важность осознания своей проблемы и обращения за помощью. Читатели получат практические советы о том, как преодолевать трудности и строить новую жизнь без зависимости.
Расширить кругозор по теме – [url=https://doctor-v.ru/period-reabilitacii-posle-izbavleniya-ot-alkozavisimosti/]стоп алко дмодедово[/url]
Estate planning is more than just paperwork—find true support via ## probate attorney orange county
Dzięki za ten artykuł, dobrze opisuje nasze realia. Z mojego doświadczenia najtrudniej jest przebrnąć przez rejestrację do GP, bo kolejki na wizytę bywają bardzo długie czas oczekiwania na specjalistę w UK
В клинике «Пульс» процесс оказания помощи начинается сразу после вашего обращения. Наша бригада оперативно выезжает на дом, где врач проводит первичный осмотр пациента: измеряет давление, пульс, оценивает степень интоксикации и собирает анамнез. На основе полученных данных подбирается индивидуальный состав капельницы.
Изучить вопрос глубже – [url=https://kapelnica-ot-zapoya-krasnodar7.ru/]капельница от запоя цена в краснодаре[/url]
Лечебный процесс организуется таким образом, чтобы каждый этап логически дополнял предыдущий и формировал устойчивую динамику. Это позволяет избежать резких изменений состояния и поддерживать медицинскую безопасность.
Исследовать вопрос подробнее – https://narkologicheskaya-klinika-v-rnd19.ru/
We tried putting our toddler in a rear seat last month, but getting a helmet to fit her tiny head was such a struggle. She kept tilting to one side on the bumpy parts of our local trail https://www.animenewsnetwork.com/bbs/phpBB2/profile.php?mode=viewprofile&u=1185057
The luxury of yacht charters combined with corporate events is simply fabulous! Newport Beach has some great choices. More info at holiday light yacht charters newport beach .
Just completed a first aid course in Joondalup—highly recommend checking practical and theory assessment for upcoming dates.
Good day! I know this is kinda off topic but I’d figured I’d ask. Would you be interested in trading links or maybe guest authoring a blog article or vice-versa? My site addresses a lot of the same topics as yours and I think we could greatly benefit from each other. If you’re interested feel free to shoot me an e-mail. I look forward to hearing from you! Excellent blog by the way!
在线购买大麻用于XXX成人色情视频
Thanks for the great explanation. More info at tarifas Easy Go seguros .
Dziękuję za ten artykuł, bo temat jest naprawdę ważny dla nas wszystkich na emigracji. Sama przekonałam się, że w przypadku specjalistów terminy oczekiwania na wizytę w ramach NHS bywają bardzo długie i wymagają dużej cierpliwości jak dostać się do dermatologa w NHS
Непрерывный мониторинг витальных показателей — ключевое отличие стационарного формата, обеспечивающее безопасную детоксикацию. В палатах клиники «Элегия Мед» установлены системы отслеживания частоты пульса, сатурации, температуры и артериального давления, данные с которых автоматически передаются в электронную медицинскую карту. Медицинский персонал дежурит круглосуточно, что обеспечивает мгновенную реакцию на ухудшение состояния: коррекцию инфузионной терапии, введение симптоматических препаратов, привлечение смежных специалистов при необходимости. Такая организация процесса исключает хаотичное назначение средств, предотвращает полипрагмазию и гарантирует, что каждый этап детоксикации проходит под строгим клиническим контролем. При необходимости применяются дополнительные методы очищения крови, включая плазмаферез, который эффективно помогает вывести стойкие токсины и метаболиты, не удаляемые стандартной инфузионной терапией.
Подробнее – https://vyvod-iz-zapoya-v-staczionare-sankt-peterburg-18.ru/
Got some great tips on maintaining healthy skin from my last visit to Men’s Waxing Services Las Vegas #—highly recommend them!
Thanks for the breakdown. We started taking our little one out around nine months, but finding a toddler helmet that actually stayed put was such a struggle at first https://paigewright86.raindrop.page/bookmarks-70911456
Sharing my experience with child custody disputes—it’s been made easier thanks to insights from # Estate Planning Attorneys in Maryland #!
Hi to every body, it’s my first pay a quick visit of this blog; this webpage consists of remarkable and in fact excellent information in support of readers.
cialis pills sexual xxx porn pills
Hey there, You’ve done a great job. I’ll definitely digg it and personally suggest to my friends. I’m sure they will be benefited from this web site.
cialis pills sexual xxx porn pills
Hello Dear, are you truly visiting this site on a regular basis, if so then you will without doubt get good experience.
cialis pills sexual xxx porn pills
Please let me know if you’re looking for a article writer for your weblog. You have some really good articles and I believe I would be a good asset. If you ever want to take some of the load off, I’d love to write some content for your blog in exchange for a link back to mine. Please blast me an email if interested. Kudos!
在线购买无处方安定片 xxx Pornhub
Panelmålning och kvistlack i sommarstugan löst genom https://www.bdtree.com/user/profile/8106 .
Первый этап лечения — это детоксикация организма. При помощи капельничного введения специализированных препаратов достигается быстрый вывод токсинов, что позволяет стабилизировать обменные процессы и восстановить нормальное функционирование печени, почек и сердечно-сосудистой системы.
Получить дополнительные сведения – https://narcolog-na-dom-ufa0.ru/narkolog-na-dom-ufa-czeny
Don’t leave your family’s future up to chance; consult with someone from orange county estate planning attorney
What’s up, I wish for to subscribe for this website to obtain most up-to-date updates, therefore where can i do it please help.
在线购买大麻用于XXX成人色情视频
цупис все про новости спорта и матчи читайте онлайн на bkcloude.ru
Комплексное обслуживание — техническое, сервисное и складское сопровождение в одном договоре. Раньше работали с разными подрядчиками, теперь всё в одном месте. Экономия времени огромная. [url=https://traktor-zd.kz/]лизинг тракторов Казахстан[/url]
“Time flies; it’s already time for another pump! Grateful for ### any Keyword###’s assistance.” drain and sewer services san dimas
Dzięki za ten tekst, bo wielu z nas wciąż gubi się w tym systemie. Sama niedawno musiałam przejść przez całą ścieżkę do specjalisty i przyznam, że czekanie na skierowanie od GP bywa naprawdę frustrujące. Czasem mam wrażenie, że wszystko trwa wieczność jak działa system recept w Wielkiej Brytanii
Эта публикация раскрывает психологические механизмы зависимости и их роль в развитии расстройств. Читатель узнает о том, как психология влияет на формирование зависимостей и как профессиональная помощь может изменить ситуацию.
Доступ к полной версии – [url=https://jivotzdorov.ru/raznoe/chto-takoe-antipohmelnaya-kapelnitsa/]вывод из запоя в ростове[/url]
Hello Dear, are you in fact visiting this web site daily, if so afterward you will without doubt obtain nice know-how.
موقع احتيالي عصابة من المحتالين
Dzięki za ten artykuł, temat jest bardzo na czasie. Osobiście uważam, że największym wyzwaniem są obecnie długie kolejki do GP, na które trzeba czasem czekać kilka tygodni jak dziala GP referral
Hi there, the whole thing is going nicely here and ofcourse every one is sharing information, that’s really excellent, keep up writing.
在线购买无处方安定片 xxx Pornhub
Pets shed a lot; I change filters more often now. HVAC repair service recommended MERV levels suitable for Tampa homes.
Your insights on maximizing space are so valuable for small kitchens in LA! For further inspiration, check out Luxury Kitchen Design Los Angeles .
Thanks for any other informative website. The place else may just I am getting that kind of information written in such a perfect approach? I’ve a venture that I am just now operating on, and I have been at the glance out for such information.
موقع احتيالي عصابة من المحتالين
Hi, I think your site might be having browser compatibility issues. When I look at your blog in Ie, it looks fine but when opening in Internet Explorer, it has some overlapping. I just wanted to give you a quick heads up! Other then that, terrific blog!
在线购买大麻用于XXX成人色情视频
найти это
[url=https://zaym-30-dney.ru/loans/zaym-bez-otkaza]Займ без отказа[/url]
Great site you have here but I was wondering if you knew of any user discussion forums that cover the same topics talked about here? I’d really love to be a part of community where I can get opinions from other experienced individuals that share the same interest. If you have any suggestions, please let me know. Cheers!
在线购买大麻用于XXX成人色情视频
бк leon все про новости спорта и матчи читайте онлайн на bkcloude.ru
прогноз футбол все про новости спорта и матчи читайте онлайн на bkcloude.ru
Mieszkam w Anglii od kilku lat i zgadzam się, że system NHS bywa wymagający. Najtrudniej jest dostać się do GP, bo linie telefoniczne rano są wiecznie zajęte. Czasami czekanie na skierowanie do specjalisty trwa miesiącami https://padlet.com/melissamayer31pkhrd/bookmarks-f0k1wgv1dkmzx1zd/wish/PVKBQOpMAX65Zj5x
Комплексное обслуживание — техническое, сервисное и складское сопровождение в одном договоре. Раньше работали с разными подрядчиками, теперь всё в одном месте. Экономия времени огромная. [url=https://traktor-zd.kz/]преобрести трактор в Казахстане[/url]
It’s amazing designed for me to have a website, which is beneficial in favor of my experience. thanks admin
cialis pills sexual xxx porn pills
If you’re looking to impress clients, consider a yacht charter for your next corporate event in Newport Beach! More details at holiday light yacht charters newport beach .