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
}
Office relocation within Clifton went smoother than expected; I found insured commercial movers on Office moving companies Clifton who handled desks and servers carefully.
Clearly presented. Discover more at pensión en Arzúa ideal para descansar .
Your recommendation to review state inspection reports is invaluable. We direct people to those reports from senior care frequently.
I’m going to add a link to this guide in the “getting started” section of our assisted living resources on senior care .
Many caregivers don’t realize that some assisted living communities have memory care “light” programs. We explain the spectrum of options further on assisted living .
1. Ugh, I’ve been stuck trying to log in all morning! Kept getting some weird error about cookies or something. Finally cleared my cache in Chrome and restarted—worked like a charm. Hope that helps anyone else struggling!
2 You can find out more
Читатели получат представление о том, как современные технологии влияют на развитие медицины. Обсуждаются новые методы лечения, персонализированный подход и роль цифровых решений в повышении качества медицинских услуг.
Получить больше информации – [url=https://supersustav.ru/kkkapelnitsy-ot-pohmelya-chto-nuzhno-znat/]лечение алкоголизма в Курске[/url]
Atención inmediata y excelente ejecución del trabajo en menos de una hora. cerrajero en barcelona
When caregivers aren’t overloaded, they can also provide meaningful social interaction while assisting with everyday tasks. That companionship is a hidden benefit described on senior care .
The spinal exercises my chiropractor gave me really help keep pain away. Car accident chiropractor
Эта медицинская заметка содержит сжатую информацию о новых находках и методах в области здравоохранения. Мы предлагаем читателям свежие данные о заболеваниях, профилактике и лечении. Наша цель — быстро и доступно донести важную информацию, которая поможет в повседневной жизни и понимании здоровья.
Что ещё нужно знать? – [url=https://vertical76.ru/percov-jyrnalistika-eto-napriajennyi-tryd/]lugansk clinica plus[/url]
One thing that stands out in small senior homes is the ability to give unhurried assistance with toileting and hygiene. That’s essential for dignity. respite care seems to value that kind of respectful care.
Working from home in Sacramento when our Appliance Repair issue started. Urgent Appliance Repair Sacramento sent a technician within the hour to our place near Sacramento City Hall who fixed it properly the first time. Really appreciated the fast response local appliance repair near me
If you’re cost-plus vs. fixed rate, clarify allocations early. I used General Contracting Services Denver to locate GCs that offer open-book job costing and described allowance checklists.
The explanation about who pays for what—private pay, long-term care insurance, or government programs—across Independent Living, Assisted Living, and Nursing Homes is very important. I found similar financial breakdowns on respite care .
For window cures, Vancouver WA remodelers services stories motorized colorations and insulating draperies for vigor financial savings.
Families often don’t realize they can negotiate or ask for customized care plans. We highlight that option on respite care as well.
It’s helpful to know that Independent Living can be a good stepping stone for seniors who want to downsize but are not ready for personal care services. I first considered that pathway after reading about it on assisted living .
Don’t forget to photograph furniture before disassembly. The crew I found via Local movers Trenton reassembled everything perfectly using the photos.
This article on pup exercise was once right on time. Sharing a worthy tip with acquaintances: spider monkey for sale
LU88 là nền tảng trực tuyến cung cấp các nội dung và tiện ích số dành cho người dùng internet. Website được phát triển với hệ thống vận hành ổn định, tối ưu hiệu suất và tốc độ truy cập nhanh bbc
DEBET là website hoạt động trên nền tảng trực tuyến, cung cấp các nội dung và tiện ích số dành cho người dùng internet. Nền tảng được xây dựng với hệ thống vận hành ổn định, tối ưu tốc độ truy cập và khả năng hiển thị linh hoạt bbc
VIN88 là nền tảng trực tuyến cung cấp các nội dung và tiện ích số dành cho người dùng internet. Website được phát triển với hệ thống tối ưu hiệu suất, đảm bảo tốc độ truy cập nhanh và khả năng vận hành ổn định bbc
FABET là nền tảng trực tuyến cung cấp các nội dung và tiện ích số dành cho người dùng internet. Website được phát triển với hệ thống vận hành ổn định, tối ưu hiệu suất và tốc độ truy cập nhanh bbc
This article gives confidence to tackle a big project. More resources at Permanent Christmas Lights Vancouver
The step-by-step is easy to follow even for beginners. I’ll be implementing this weekend—details at Permanent Holiday Lights Vancouver
If you’re cost-plus vs. set rate, clear up allocations early. I made use of Denver General Construction Contractors to locate GCs that give open-book job costing and detailed allocation listings.
I really related to this. Working from home definitely blurs the line between day and night, and that late-night doom-scrolling habit makes it even worse. Between autoplay videos and constant notifications, my brain never settles Find more info
Watch for hidden fees like long-carry or elevator charges; Hampton moving company spelled out all costs upfront.
How’s the BBB rating and FMCSA verification for carriers sourced through Buffalo car transportation services ? I want to avoid low-star outfits for a Buffalo to Dallas run.
Следующая страница [url=https://tripscans75.group/]tripscan вход[/url]
It’s wild how much focus is on recovery now compared to just ten years ago. The hyperbaric chambers and float tanks sound intense, but I wonder if it’s all really helping, or if it’s just the latest expensive trend that teams use to justify big contracts View website
I really enjoyed this breakdown. It explains so much about those brutal 200 spins cold streak sessions I keep hitting. I always assumed the machine was just broken, but the hidden volatility makes total sense now what is a slot free spins engine
I’ve been using a ring for sleep tracking lately and it’s honestly changed how I look at my rest patterns. It’s fascinating to see how my evening habits affect my recovery score the next day remote healthcare for busy professionals
It’s interesting to see how much emphasis we’re putting on breathwork here in the UK lately. I’ve noticed that integrating short, structured breathing sessions into my daily commute has really helped manage the mid-week burnout Check out the post right here
Appreciate the emphasis on minimizing energy use while maximizing impact. My next project will definitely reference Outdoor Festive Lighting Vancouver
I totally relate to this. Since working from home, the line between my office and my bed has blurred way too much. Plus, those autoplay videos keep me scrolling until midnight why modern life is exhausting
Hello would you mind stating which blog platform you’re working with?
I’m looking to start my own blog in the near future but I’m having a tough time
choosing between BlogEngine/Wordpress/B2evolution and Drupal.
The reason I ask is because your layout seems different then most blogs and I’m
looking for something completely unique.
P.S My apologies for getting off-topic but I had to ask!
If you’re moving near Briscoe Park or toward Grayson, local crews from Long distance movers Snellville know the traffic patterns.
It is really helpful to see this process explained clearly. I wasn’t aware how essential it is to have your full summary of care from your GP ready before starting the private process. That part definitely feels like a bit of a hurdle to clear access medical cannabis on NHS
It is wild how much tech these players are using now just to stay on the field. All the cryotherapy and sleep tracking seems like a lot to manage on top of an already high-pressure career https://alpha-wiki.win/index.php/The_Myth_of_the_Static_Meal_Plan:_Why_Pro_Athletes_Tweak_Their_Nutrition_Weekly
Your section about reviewing contracts and understanding what’s included in the monthly fee versus extra charges is very practical. I used fee breakdown examples from memory care while comparing several Assisted Living communities.
It’s fascinating to see how the landscape is shifting in the UK. I found the move towards video consultations for medical cannabis really interesting since it makes everything so much more accessible for patients UK medical cannabis clinic
I always suspected something was up with the math in these games. That 200 spins cold streak I hit last week finally makes sense now that I read your breakdown on hidden volatility. It feels like the game design intentionally masks the real risk factor hot streak slots
I’ve been using sleep tracking features on my watch for a few months now, and it’s definitely changed how I think about my bedtime habits. It’s so helpful to see those patterns laid out https://wiki-cafe.win/index.php/Why_Discreet_Home_Delivery_is_the_Missing_Link_in_Modern_Digital_Health
I totally get this. Between the endless scrolling and autoplay videos keeping me up late, plus working from home-where the line between office and bed feels invisible-my sleep has suffered https://jaredsinsightfulblog.raidersfanteamshop.com/why-do-i-feel-overstimulated-even-when-i-m-just-relaxing-at-home
I really enjoyed reading this take on wellness in the UK. The point about tailored sleep tracking resonated with me, especially since I am constantly trying to manage burnout sleep disruption help
I like that you brought up outdoor spaces and secure gardens. My mother loves being outside, so I’ll prioritize communities on memory care that highlight safe outdoor areas.
Когда стандартный косметический ремонт перестает радовать глаз, а типовые планировки вызывают тоску, на помощь приходит дизайнерский ремонт. Это не просто смена обоев или укладка плитки, это комплексное преображение пространства, где каждый сантиметр работает на эстетику и комфорт. В отличие от обычной отделки, здесь важен комплексный подход: от перепланировки и расстановки перегородок до выбора фактур и финальных аксессуаров, создающих уникальный характер жилья.
[url=https://designapartment.ru]дизайнерский ремонт квартиры цена [/url]
Особенно ценится дизайнерский ремонт в Москве, где рынок недвижимости предлагает как исторические квартиры со сложной геометрией, так и современные «квадратные» коробки в новостройках. Специфика столицы требует не только красивого, но и функционального решения: грамотной шумоизоляции, эргономичного хранения и использования премиальных материалов, устойчивых к городской нагрузке. Профессиональный подход позволяет превратить недостатки помещения (низкие потолки, проходные комнаты) в его главные изюминки.
[url=https://designapartment.ru]дизайнерский ремонт квартир москва [/url]
Самым востребованным форматом на сегодняшний день является дизайнерский ремонт под ключ. Это означает, что вы получаете готовое жилое пространство, полностью соответствующее утвержденному проекту, без необходимости самостоятельно контролировать поставки стройматериалов или искать бригады. В стоимость входит всё: от разработки 3D-визуализации и закупки чистовых покрытий до монтажа инженерных систем, расстановки мебели и декорирования окон. Вы просто въезжаете и наслаждаетесь результатом.
[url=https://designapartment.ru]дизайнерский ремонт дома в москве [/url]
Если вы ищете дизайнерский ремонт под ключ в Москве, важно обращать внимание на портфолио компании и наличие строительной лицензии. Столичные фирмы предлагают гибкие условия сотрудничества, поэтапную приемку работ и авторский надзор, чтобы финал на 100% совпадал с проектом. Особенно это актуально для комплексных объектов, где объединены гостиная с кухней или спальня с гардеробной — реализовать такую задумку «на глаз» без профильного образования практически невозможно.
[url=https://designapartment.ru]элитный дизайнерский ремонт [/url]
Главный вопрос, который волнует заказчиков, — это дизайнерский ремонт цена. В Москве стоимость складывается из площади объекта, сложности геометрии, уровня используемых материалов и списка инженерных работ. Цена дизайнерского ремонта под ключ обычно фиксируется в смете до старта работ, что защищает бюджет от непредвиденных скачков курса. Инвестируя в авторский проект, вы повышаете не только качество жизни, но и рыночную стоимость квартиры, делая вложение средств максимально окупаемым и эстетически оправданным.
[url=https://designapartment.ru]дизайнерский ремонт под ключ [/url]
https://designapartment.ru
дизайнерский ремонт квартиры
Chiropractic care can be crucial after personal injuries to prevent long-term damage. Chiropractor near me