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
}
Auto shipping is much easier when you know what questions to ask. This post is helpful for anyone searching for trusted Chula Vista vehicle shippers. commercial vehicle transport Chula Vista
Слушайте кто знает Брат потерял человеческий облик Жена рыдает В диспансер тащить — последнее дело Короче, единственные кто взялся за безнадёжный случай — вывод из запоя в стационаре анонимно и безопасно Провели полную детоксикацию В общем, вся инфа по ссылке — быстрый вывод из запоя в стационаре [url=https://kapelnicza.vyvod-iz-zapoya-v-stacionare-samara.ru]https://kapelnicza.vyvod-iz-zapoya-v-stacionare-samara.ru[/url] Не ждите пока станет хуже Перешлите тем кто в беде
Hi I am so delighted I found your web site, I really found you by mistake, while I was searching on Google for something else, Regardless I am here now and would just like to say thanks a lot for a tremendous post and a all round interesting blog (I also love the theme/design), I don’t have time to browse it all at the minute but I have bookmarked it and also added in your RSS feeds, so when I have time I will be back to read a lot more, Please do keep up the great b.
I think having a backyard deck is necessary for entertaining visitors! It develops the best atmosphere for barbecues and events deck builder
This is a helpful read for families preparing for an international move. Having professional Spokane movers with overseas relocation experience makes a big difference. commercial furniture movers Spokane
Люди помогите советом Близкий человек уже 10 дней в запое Жена рыдает В диспансер тащить — последнее дело Короче, единственные кто взялся за безнадёжный случай — капельница от запоя в стационаре круглосуточно Провели полную детоксикацию В общем, жмите чтобы сохранить — вывести из запоя в стационаре [url=https://klinika.vyvod-iz-zapoya-v-stacionare-samara13.ru]вывести из запоя в стационаре[/url] Не ждите пока станет хуже Перешлите тем кто в беде
Appreciate the insightful article. Find more at explorar alojamientos con piscina .
This is a very informative post about online casinos and
betting platforms. I especially liked how it explains
the importance of choosing a licensed site before signing
up.
Many players often ask where they can find reliable gaming platforms with fair odds and smooth payouts.
From what I’ve seen, checking platforms like vn22vip helps users compare features, bonuses, and overall experience.
Thanks for sharing these insights — they’re helpful for
both beginners and experienced bettors.
Office relocations need careful planning, especially when equipment, furniture, and files are involved. Anyone looking for Winston Salem commercial movers may find this useful: apartment movers Winston Salem
The perk uses and game range here are outstanding. If you’re hunting a dependable crypto casino, try licensed crypto casino operators .
This was highly educational. More at asesoría jurídica Coruña .
This paragraph provides clear idea in favor of the new users of blogging, that
genuinely how to do running a blog.
This was highly educational. For more, visit mejor abogado laboralista cerca de mí .
This is a helpful guide for anyone searching for trusted movers in Houston. Good communication and transparent pricing are so important. I’d also recommend looking at Houston commercial movers
Nicely detailed. Discover more at recursos información mascotas .
The best moving experience usually comes from a company that is organized, respectful, and honest from the first quote to the final delivery. Office moving companies Cumming
Business relocation can be stressful without the right team. Choosing experienced San Bernadino commercial movers is essential for a smooth and organized move. cheap furniture movers San Bernadino
В даркнете нет гарантий безопасности. Но есть агрегаторы, которые делают безопасность максимально вероятной. И это лучшее, что может предложить скрытая сеть своим пользователям.
Покупайте и продавайте без границ, черпая при этом из нашего ресурса только полезные и важные знания.
[url=https://24×7.lc/9RPPN]СПИСОК САЙТОВ ДАРКНЕТА[/url]
Открытый исходный код — наша прозрачная броня, которую каждый может проверить на прочность.
basketball Wett Strategien tipps heute net
I’m curious to find out what blog platform you’re working with?
I’m experiencing some minor security issues with my latest blog and I would like to find something more secure.
Do you have any solutions?
Ridiculous story there. What occurred after? Good luck!
I agree that preparation is key when shipping a vehicle. For Yonkers car shipping, getting a detailed quote and confirming the carrier’s credentials can make a big difference. Check Yonkers vehicle shipping as well.
I appreciate these practical moving suggestions. Hiring licensed and insured movers is always a smart decision. Office moving companies Atlanta
Bowie has many neighborhoods, so hiring movers who know the area is a smart choice. Local experience often helps avoid delays and confusion. Bowie moving company is a resource worth considering for moving support.
If you’re moving soon and want to keep costs low, finding cheap movers in New Hyde Park is a smart move. Visit New Hyde Park full service movers for help.
Very helpful information for people planning a move in or around Everett. I think getting a written estimate and confirming the moving date early are two of the best steps anyone can take. Long distance movers Everett
В Новороссийске круглосуточная наркологическая служба работает без выходных, ночью, в праздники и в любое время суток. Наркологическая служба работает по принципу круглосуточного дежурства, что позволяет оказать быструю помощь в экстренных случаях. При обращении по телефону оператор уточняет адрес, контакты, состояние больного, длительность приема алкоголя или наркотиков, наличие хронических заболеваний, противопоказания, жалобы, симптомы и необходимость срочного выезда.
Узнать больше – [url=https://narkolog-na-dom-v-novorossijske2.ru/]нарколог на дом в новороссийске[/url]
This post gives practical advice for a smoother relocation. If you need help finding moving options in Lawrence, Lawrence commercial movers may be a good place to start.
I’m so joyful I stumbled upon this text when are seeking for the very best native fence installers! So informative! Aluminium fencing contractors
I think local movers are especially valuable because they understand area-specific challenges like parking, building access, and timing. For Marietta moves, Everett moving company may help.
Office relocation is much easier when professionals handle furniture, equipment, and logistics. For Dacula office moving options, visit Dacula moving companies
A good office mover should offer careful handling, organized labeling, and efficient transport. These details matter during a Boston commercial move. cheap movers Boston
Информация об обращении не передается третьим лицам, а детали лечения обсуждаются только с пациентом.
Получить дополнительные сведения – [url=https://vyvod-iz-zapoya-v-statsionare-v-gelendzhike2.ru/]вывод из запоя в стационаре анонимно в геленджике[/url]
It’s always best to choose long distance movers with experience, transparent pricing, and good customer support. Woodbridge moving help can be found here: Woodbridge commercial movers
sofortüberweisung casino bonus 70 freispiele (http://Bigwheeley.com/index.Php/2026/07/11/online-casino-taktiken-was-funktioniert-wirklich/) erfahrungen
Appreciate the thorough insights. For more, visit disease symptoms .
sportwetten test vergleich
my web-site euroleague basketball wett tipps
Здорова, народ Кошмар в семье Дети боятся заходить в комнату В диспансер тащить — последнее дело Короче, единственные кто взялся за безнадёжный случай — запой стационар с комфортными условиями Выписали через неделю здоровым В общем, телефон и цены тут — вывод из запоя стационар самара [url=https://klinika.vyvod-iz-zapoya-v-stacionare-samara13.ru]вывод из запоя стационар самара[/url] Не ждите пока станет хуже Перешлите тем кто в беде
Shipping a car to or from Detroit can feel complicated at first, but guides like this make the process easier. Detroit car transportation services is also worth checking out.
Before booking long distance movers Fulshear, I used Fulshear Movers to compare insurance levels and valuation coverage—highly recommend.
If you’re moving into a new place in Friendswood, having apartment movers who know the complex rules makes all the difference. I had a smooth experience thanks to Office moving companies Friendswood .
Слушайте кто сталкивался Брат потерял человеческий облик Жена рыдает Платная клиника просит бешеные деньги Короче, спасла только госпитализация — вывод из запоя самара стационар с палатой Провели полную детоксикацию В общем, не потеряйте контакты — вывод из запоя стационар [url=https://klinika.vyvod-iz-zapoya-v-stacionare-samara13.ru]вывод из запоя стационар[/url] Звоните прямо сейчас Перешлите тем кто в беде
If you need a quick ballpark before committing, the move calculator on Copperas Cove international movers gave me a helpful starting number.
This post is very helpful for anyone preparing to relocate. For reliable Local movers Oyster Bay, visit Local movers Oyster Bay .
I appreciate these tips for making a move easier and more efficient. Hiring experienced Milwaukee full-service movers can really help reduce stress. You can also visit international relocation Milwaukee for moving assistance.
Đội ngũ hỗ trợ nhanh, trả lời rõ ràng, mình đánh giá cao GO88. go88
This was a wonderful guide. Check out ayuda y tratamiento reumáticas for more.
I absolutely love how fashion jewelry can transform a whole clothing! It’s remarkable how a simple piece can include so much elegance and character buy gold near me
Люди помогите Объездил кучу салонов — везде перекупы То фасады кривые Короче, единственные кто не наваривается — заказать кухню с гарантией Цены ниже рынка В общем, сохраняйте в закладки — заказ кухни спб [url=https://kuhni-spb-lvk.ru]заказ кухни спб[/url] Проверяйте производителя Сам мучался теперь делюсь
Ai cần cổng game đáng tin thì cứ theo link này! HITCLUB.COM tại hitclub