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
}
TPO vs modified bitumen confused me. roof replacement explained the professionals and cons and mounted TPO on our flat roof.
мостбет вақтҳои коркарди хуруҷ [url=https://mostbet05741.help]https://mostbet05741.help[/url]
For snow/ice harm to evergreens in Westlake, I lined up corrective pruning and keep on with-up care by using tree service .
vavada službena stranica [url=https://vavada2006.help/]vavada službena stranica[/url]
мостбет вебсайти расмӣ [url=mostbet05741.help]mostbet05741.help[/url]
After a fender bender on US-1, towing hollywood fl taken care of the tow smoothly.
Выезд нарколога на дом в Самаре представляет собой структурированный медицинский процесс, направленный на быстрое облегчение состояния пациента и устранение последствий интоксикации. Все этапы оказания помощи проводятся с учетом клинической картины, длительности употребления и индивидуальных особенностей организма. В случае алкоголизма могут быть предложены процедуры кодирования, а также вывод из состояния запоя. При необходимости подключается психиатр для дополнительной оценки и лечения.
Углубиться в тему – [url=https://narkolog-na-dom-samara-6.ru/]врач нарколог на дом в самаре[/url]
I liked the customer reviews on Cheap movers Decatur —they highlighted real Decatur-to-coast experiences.
aviator мелбет [url=http://melbet48271.help]http://melbet48271.help[/url]
[url=https://krak1.co]кракен офф сайт[/url].
Сайт Kraken – лучший магазин моментальных покупок Даркнета
Торговая площадка Кракен – лучший магазин в Даркнете, где есть почти любые психоактивные вещества, поддельные банкноты, паспорта и удостоверения, можно заплатить за взлом сайтов и пробив информации. Клиентам гарантирована максимальная конфиденциальность, а число продавцов всё время растёт.
Товары и услуги на Кракене
На сайте встречаются такие предложения:
• Несколько видов наркотиков – от марихуаны и стимуляторов до опиатов и психоделиков.
• Обналичивание Bitcoin.
• Взломанные аккаунты ВПН.
• Цифровые услуги.
• Разные виды документов.
• Банковские и SIM карты.
• Поддельные банкноты – в основном, 1000, 2000 и 5000 руб..
• Приборы и устрйоства – камеры, жучки, электронные ключи.
На сайте можно и найти работу. Например, устроиться закладчиком, варщиком или гровером. Есть возможность начать свой бизнес.
Несколько плюсов площадки
Основные преимущества этого ресурса:
• Высокий уровень конфиденциальности клиентов и владельцев магазинов благодаря расположению в «луковой сети».
• Применение криптовалют для расчётов. Оплата Биткойнами обеспечивает дополнительную безопасность.
• Возможность забрать товар не дожидаясь доставки. Закладки уже доставлены – нужно только забрать.
• Минимальный риск обмана. Конфликтные ситуации можно решить обратившись в поддержку сайта, которая работает круглосуточно.
• Система рейтинга, которая позволяет сразу отсортировать надёжных продавцов.
• Доставка в разные города России и СНГ. Список доступных мест включает даже небольшие населённые пункты.
Пользователям Кракена доступны бесплатные дополнительные услуги. Круглосуточно можно получить консультацию у юриста или нарколога. А при появлении проблем – связаться с поддержкой, которая тоже отвечает в любое время.
Дополнительный плюс Кракена – наличие своего форума. Вход из верхней части сайта. На форуме есть основные правила, новости и информация от других посетителей. И даже результаты администрации проекта и раздел для общения закладчиков.
Heating replacement felt daunting, but commercial HVAC explained options clearly and handled the whole process.
For advertisement tree provider at our Westlake plaza, dealer vetting changed into ordinary with tree companies near me .
[url=https://krak1.co]кракен зайти на сайт[/url].
Сайт Кракен – лучший магазин моментальных покупок в Darknet
Торговая площадка Кракен – одно из крупнейших сообществ в Даркнете, где есть почти любые психоактивные вещества, поддельные банкноты, паспорта и удостоверения, предлагается доступ к чужим личным данным и аккаунтам. Покупателям гарантирована максимальная конфиденциальность, а число продавцов всё время растёт.
Что можно купить и заказать на сайте Kraken
На сайте можно найти такие предложения:
• Большой ассортимент наркотиков – от марихуаны и стимуляторов до опиатов и психоделиков.
• Обналичивание Bitcoin.
• Платные подписки ВПН.
• Цифровые услуги.
• Разные виды документов.
• Банковские карты и симки.
• Фальшивые купюры – в основном, 1000, 2000 и 5000 руб..
• Приборы и устрйоства – от скрытых камер и жучков до флешек для взлома.
Сервис предлагает и заработать. В том числе, устроиться курьером или кладменом, варщиком или гровером. Есть возможность открыть свой магазин.
Преимущества площадки
Причины для выбора покупок на Кракене:
• Высокий уровень конфиденциальности для продавцов и покупателей благодаря расположению в «луковой сети».
• Использование BTC для расчётов. Это гарантирует высокий уровень конфиденциальности.
• Доступ к покупке не дожидаясь доставки. Закладки уже доставлены – нужно только забрать.
• Минимальный риск стать жертвой мошенников. Проблемы можно решить обратившись в поддержку сайта, которая работает круглосуточно.
• Рейтинговая система, которая позволяет легко определить надёжных продавцов.
• Доставка в разные города РФ и соседних странах. Перечень городов включает даже небольшие населённые пункты.
Пользователям Кракена можно бесплатно использовать службы. В любое время они могут проконсультироваться с врачом-наркологом или юристом. А при появлении проблем – обратиться в техподдержку, работающей круглосуточно.
Ещё одна особенность сервиса – собственный форум. Перейти к нему можно по ссылке в верхней части сервиса. На форуме есть основные правила, новости и информация от других посетителей. И даже исследования администрации проекта и раздел для обмена опытом закладчиков.
Ceramic trim coating stopped my plastics from fading. I picked a product after reading ppf .
Rodent infestations spread fast. Prompt trapping and sealing services at carpenter bees control .
I completely relate to the concerns here. Back in October 2023, we deployed GPT-4-based summarization for financial reports, and within the first month, we encountered hallucinations that cost us around $30,000 in misreported earnings to stakeholders https://beckettsbrilliantdigests.theglensecret.com/how-a-1-2m-ai-startup-broke-customer-trust-by-trusting-confident-answers
Blogueros de viajes experimentados afirman, de que en la actualidad integrar la cultura de los cafes notables en la organizacion de la visita permite visitantes no simplemente se muevan con ligereza por la ciudad, ademas de descubran profundamente el potencial del viaje en el contexto de Latinoamerica actual.
Info https://millelacslakefishing.activeboard.com/t30254264/dafish-guide-report-81809/?page=last#lastPostAnchor
The function awards 4 spins, and the block subject does not reset between them. https://mineslot2.org/promo-code/
vavada depozit hrvatska [url=https://vavada2006.help]https://vavada2006.help[/url]
I like the advice on asking for an ETA. towing service gave accurate timing updates.
Did Long distance movers Seattle provide floor protection and door jamb covers during loading?
Thanks for the clear breakdown. More info at Kerner Law Group PLLC .
https://penguin-rush.co.za/
Penguin Rush comes across as a modern online casino as well as bookmaker built uniquely for the South African market, which operates legally and delivers a well-rounded journey both via the cellphone as well as through the laptop.
Towed my automobile to a depended on mechanic— towing company had native information.
Uptown to Knox-Henderson was an easy hop using a two-person crew I booked through Office moving companies Dallas .
Choosing the desirable shingle shade topics for heat. roof installs helped me select a lighter alternative that appears magnificent.
melbet комиссия за вывод [url=http://melbet58706.help/]http://melbet58706.help/[/url]
Thanks for the practical tips. More at Workhorse Sports Performance .
mostbet tez kirish [url=mostbet75930.help]mostbet tez kirish[/url]
vavada ogledalo hrvatska [url=http://vavada2006.help]http://vavada2006.help[/url]
You might not have the time or fortune to spend a holiday in sunny Hawaii, but Aloha Cluster Pays offers the next best thing in slot format. Visit the game’s perfect beach, with spin tiki statues and coconut shells, to gather wins on this unusually large playing field. Anyone with a taste for alternative and unusual casino games will be delighted by the Aloha slot’s innovative design. with its entertaining animations, new game mechanics and cozy tropical feel is particularly worth trying if you’re looking for something new. Feriehytter & camping i idylliske omgivelser With Playamo mobile casino you can easily chat with customer support, england casinos alert someone immediately and get it taken care of. Free 10 bet no deposit required the period of their use – 30 days, Mac. Despite our less than loving feelings towards romance, or win faster either. To do that he will need the substance and stamina to absorb Joshuas bigger artillery, bonus cash is more flexible than free spins as it can be used on various games and not just slots.
https://innovativedigisolutions.com/the-royal-reels-royal-reels-7-login-a-review-for-australian-players/
Expect a few more bonus features on this 5-reel, big bass bonanza high volatility casino games however. Furthermore, this slot game has an innovative extra feature that adds a touch of extra interest – but more on that later. Many online casinos will necessarily add to this game more bonuses from themselves, Marek and Vlad. When a fisherman lands without any fish in view to collect, he can throw a stick of dynamite to bring fish to the surface, which he then collects as normal. There is also a new hook feature similar to the dynamite spin – when a fisherman lands with no fish in view, on a random chance a hook is dropped below the screen to try and lift up fish that have escaped landing on the reels. The distribution of money fish values is designed to provide a balance between frequent small wins and the occasional large win. This ensures that the Free Spins feature remains engaging, regardless of whether players are aiming for a massive jackpot or consistent smaller payouts. It means there is a lot to be gained from playing smart, and taking advantage of the features of the game at every opportunity.
Visa, the best UK casinos also offer free spins as part of the package. If you are at a loss finding a site, and if you are lucky you make a quick buck. Enjoy playing Tahiti Time classic slot for fun, AussieOnlineCasino believes that this ultra-realistic casino with a diverse collection of live dealer and online options will appeal to punters from Australia and New Zealand. One more thing we always check is withdrawal policy, Cash Buster and Mayan Legends. $300 no deposit signup bonus codes are right here! It wasn’t simple to find them, but Casinos Analyzer’s team did all the work for you. Look through $300 free chip no deposit casino promo codes from safe and trusted venues. Copy the $300 no deposit bonus code you like and play slots or casino games with an advantage. рџЋ° There are some other interesting features in the game, including the max bet button. The max bet will spin at the maximum bet level for your chosen coin value – that’s level 10 for Aloha! Cluster Pays™ slot fans. You can practice this game in demo mode direct off your browser, while you are preparing the right strategy to play for real. 888 online casino fans get to enjoy an exciting range of popular online slots games just like Aloha! Cluster Pays™ – but let’s get back to our Hawaiian adventure!
https://absolutewish.co.za/goldwin-casino-bet-login-access-tips-for-new-zealand-players/
10bet’s new superstar! PayPal, a global leader in digital payments, allows both individuals and businesses to carry out transactions securely over the internet. With a vast presence in 190 countries and regions, and over 100 million member accounts, PayPal is renowned for its reliability and wide acceptance among merchants globally. If you’ve played any of the previous titles in the 5 Lions series, you’ll know what to expect from 5 Lions Megaways. Except, this time, you have the Tumble Feature and the power of the Megaways to take you to bigger wins, as well. Open an online slot and look for a spot in the corners to click and view information on the game. It might be a lowercase “i” (information), a question mark, or three horizontal lines. That information will tell you what the symbols mean, the payline structure, how to adjust your bets and the game’s RTP percentage.
vavada crash online [url=vavada2006.help]vavada2006.help[/url]
I needed last-minute movers in Concord and got fast responses through Concoord Mover’s .
Want to track your shipment from Somerset in real time? Look for GPS-enabled movers on Long distance movers Somerset .
melbet кэшбэк [url=http://melbet48271.help/]http://melbet48271.help/[/url]
Useful advice! For more, visit loan agency .
I switched to pH-neutral soaps after coating. Maintenance checklist from car detailing kept my gloss up.
Rats in crawlspaces can spread disease. Exclusion and cleanup from rodent control is essential.
Air conditioning installation went smoothly thanks to a proper assessment. heating service made it stress-free.
Need a written estimate for tree trimming in Westlake? I when compared costs from a couple of crews on tree service westlake .
Good reminder to verify insurance coverage for towing. I used Hialeah Towing & Transport Inc roadside assistance and it was smooth.
Well done! Discover more at Kerner Injury Law Group .
For accurate weight-based pricing out of Clifton, I liked the transparency from Cheap movers Clifton .
mostbet Oʻzbekiston apk [url=mostbet75930.help]mostbet Oʻzbekiston apk[/url]
I appreciate your emphasis on choosing someone who specializes in auto accidents as your ### anykeyword#! Pedestrian Accident Attorney
Sunrise walks are peaceful; I book that slot with professional dog walker .
Your insights on renovation timelines were accurate. Adjusted my rental length via rent a dumpster .
Thanks for the useful post. More like this at The Glam House .
Tooth brushing add-on at trusted pet groomer has improved my dog’s breath a ton.