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 found this very interesting. For more, visit rent a car toronto .
Personal certificado y herramientas adecuadas, cerrajero en Barcelona 24 horas cerrajero barcelona
pin up código bonus [url=https://pinup62718.help/]https://pinup62718.help/[/url]
Appreciate how this post breaks down which tools every homeowner should have handy—I didn’t even own a drain snake until recently! But sometimes you just need an expert like Tennessee Standard Plumbing and Drain; see their top tool picks at plumber
Rock Academy completely changed how my kid connects with music. The instructors are actual working musicians who care about each student’s growth, and the live performances are unreal. It’s not just lessons — it’s confidence, teamwork, and pure fun music lessons saugerties ny
mostbet ставки на спорт [url=http://mostbet80295.help]http://mostbet80295.help[/url]
pin-up android problem [url=https://pinup48127.help]pin-up android problem[/url]
cómo retirar a BCP en 1win [url=https://1win05634.help/]https://1win05634.help/[/url]
EMDR intensives with extended resourcing felt safer; Burnout outlines that approach clearly.
Liked the quick check-in and pleasant vibe, as kept in mind in the review; I dropped a fast wrap-up on wellness center Mansfield .
мелбет kg официальный сайт [url=http://melbet95634.help]мелбет kg официальный сайт[/url]
ทำทรีตเมนต์ลดรูขุมขนก่อนงานบริษัท ทองหล่อที่ไหนดี ดูตารางโปรใน โบท็อกซ์
From my Ontario home projects, cost efficiency is key. I’m a Toronto homeowner and that article helps; hardscaping near me is a solid reference.
Appreciate the thorough analysis. For more, visit senior care .
pin-up hesabdan pul çıxarma [url=https://pinup48127.help]pin-up hesabdan pul çıxarma[/url]
We want a garden or courtyard for safe sunshine time. I found several near Clovis on elderly care .
As a GTA homeowner, paint prep saves fail days. The article fits reality; hardscaping mississauga is a solid tip.
Thanks for the clear advice. More at respite care .
Your winter kit list saved me last week. Tow from tow truck services got me unstuck.
Very helpful read. For similar content, visit Oxnard Dentistry .
Bicycle and pedestrian crashes require special handling. Guidance at Car Accident Attorney .
This is a great breakdown for navigating the 2026 market. I always advise people to check for specific JavaScript rendering capabilities before signing any contract https://remingtonsnicedigests.yousher.com/how-top-tier-agencies-diagnose-javascript-rendering-latency-a-2026-reality-check
Anyone have ride with attic ventilation fixes to restrict ice dams? The coaching on roof replacement helped me ask the properly questions.
Thanks for covering fall prevention. We used senior care to compare safety assessments and emergency response protocols.
If you’re exploring 4K and occasional-easy streams, we benchmarked encoder presets and digicam settings on our Goo cam site try out page: best live cam sites payment options .
Tripscan — это современная платформа, которая помогает компаниям эффективно управлять своими маршрутами и логистикой. Наш сервис предоставляет удобный интерфейс для планирования и отслеживания поездок, что значительно сокращает время и повышает точность выполнения задач.
[url=https://tripscan66c.cc]tripscan [/url]
Трип скан — это надежное решение, которое интегрируется с различными системами учета и автоматизации. Благодаря Trip scan вы сможете быстро анализировать маршруты, оптимизировать расходы и контролировать выполнение заказов в реальном времени.
[url=https://tripscan66c.cc]трипскан вход [/url]
Tripscan top — это наша эксклюзивная функция, которая позволяет пользователям получать наиболее актуальные данные о движении транспорта и эффективности маршрутов. Используйте трипскан вход для авторизации и доступа к расширенным возможностям платформы.
[url=https://tripscan66c.cc]tripscan [/url]
Для новых пользователей у нас есть удобный трипскан сайт, где можно ознакомиться с функционалом, зарегистрироваться и начать использовать сервис уже сегодня. Трипскан сайт обеспечивает простоту и безопасность работы с данными, а также поддержку на всех этапах.
[url=https://tripscan66c.cc]tripskan [/url]
Выбирайте Tripscan — ваш надежный партнер в сфере логистики и транспорта. Откройте новые горизонты с Tripscan top и убедитесь в эффективности нашего сервиса!
https://tripscan66c.cc
tripskan
Solid overview of timelines and common delays. For contractor checklists and permit pointers in Toronto, toronto home additions was a useful reference for us.
https://codere-bet.com.co/
La plataforma Codere Bet en Colombia se presenta como un casino y centro de apuestas deportivas con respaldo normativo dentro del pais pues funciona bajo la supervision de Coljuegos
доставка цветов недорого по москве [url=www.dostavka-cvetov777.ru/]доставка цветов недорого по москве[/url] .
Loved the redundancy tips for critical circuits. I track designs on local electrician in Irving .
1win odds [url=www.1win5529.ru]1win odds[/url]
This was quite informative. For more, visit respite care .
Tripscan — это современная платформа, которая помогает компаниям эффективно управлять своими маршрутами и логистикой. Наш сервис предоставляет удобный интерфейс для планирования и отслеживания поездок, что значительно сокращает время и повышает точность выполнения задач.
[url=https://tripscan66c.cc]трипскан вход [/url]
Трип скан — это надежное решение, которое интегрируется с различными системами учета и автоматизации. Благодаря Trip scan вы сможете быстро анализировать маршруты, оптимизировать расходы и контролировать выполнение заказов в реальном времени.
[url=https://tripscan66c.cc]трипскан вход [/url]
Tripscan top — это наша эксклюзивная функция, которая позволяет пользователям получать наиболее актуальные данные о движении транспорта и эффективности маршрутов. Используйте трипскан вход для авторизации и доступа к расширенным возможностям платформы.
[url=https://tripscan66c.cc]трипскан [/url]
Для новых пользователей у нас есть удобный трипскан сайт, где можно ознакомиться с функционалом, зарегистрироваться и начать использовать сервис уже сегодня. Трипскан сайт обеспечивает простоту и безопасность работы с данными, а также поддержку на всех этапах.
[url=https://tripscan66c.cc]трипскан сайт [/url]
Выбирайте Tripscan — ваш надежный партнер в сфере логистики и транспорта. Откройте новые горизонты с Tripscan top и убедитесь в эффективности нашего сервиса!
https://tripscan66c.cc
tripskan
Appreciate the accident prevention angle. For MMI and return-to-work in Atlanta, visit Georgia Work Injury Lawyer .
Rave testimonials concerning the cornbread from BBQ restaurant schenectady at business lunches.
If you’re trying to find newbie-pleasant yoga sessions in Bangalore, I’ve had first rate studies round Indiranagar and Koramangala. You may examine schedules and trial selections at Best Yoga Center in Bangalore .
pin-up promo kod necə daxil etmək [url=pinup48127.help]pin-up promo kod necə daxil etmək[/url]
Case value optimization matters. car accident lawyer focused our spend on higher-value practice areas.
pin-up retiro en Chile [url=http://pinup62718.help/]http://pinup62718.help/[/url]
I’ve been to a few music camps, but nothing comes close to Rock Academy. You actually get to form a band, rehearse, and play live shows — like a real musician. Everyone there treats you like you belong, no matter your skill level music school hudson valley
mostbet зеркало Кыргызстан [url=http://mostbet80295.help/]http://mostbet80295.help/[/url]
Mansfield people, if you’re contrasting value, I damaged down expense per min on red light therapy Mansfield .
Ceiling fan installs look simple but aren’t; book a safe install at emergency electrician Plano .
Any experience with diabetic meal management in local assisted living? I’m researching via senior care .
Activities schedules inform you a whole lot regarding an area’s spirit. We compared schedules directly on assisted living .
pin up yangi mirror [url=https://pinup08694.help]https://pinup08694.help[/url]
Appreciate the comprehensive advice. For more, visit Assisted living facility .
Sería genial si hicieran un video explicativo sobre algunas técnicas mencionadas aquí; sería aún más útil! cerrajero barcelona
мелбет пополнить с элкарт [url=https://melbet95634.help/]https://melbet95634.help/[/url]
Thanks for the useful suggestions. Discover more at Glam House Beauty Lounge .