您的位置:首页 > 编程语言

关于编程控制CPU使用率的笔记

2008-09-20 15:26 204 查看
代码

#include "Windows.h"

#include "stdlib.h"

#include "math.h"

#include <tchar.h>

const double SPLIT = 0.01;

const int COUNT = 200;

const double PI = 3.14159265;

const int INTERVAL = 300;

int _tmain(int argc, _TCHAR* argv[])

#include "stdafx.h"

#include "Windows.h"

#include "stdlib.h"

#include "math.h"

#include <tchar.h>

const double SPLIT = 0.01;

const int COUNT = 200;

const double PI = 3.14159265;

const int INTERVAL = 300;

int _tmain(int argc, _TCHAR* argv[])

{

SetProcessAffinityMask(

GetCurrentProcess(),

0x00000001 //cpu mask

);

DWORD busySpan[COUNT]; //array of busy times

DWORD idleSpan[COUNT]; //array of idle times

int half = INTERVAL / 2;

double radian = 0.0;

for(int i = 0; i < COUNT; i++)

{

busySpan[i] = (DWORD)(half + (sin(PI * radian) * half));

idleSpan[i] = INTERVAL - busySpan[i];

radian += SPLIT;

}

DWORD startTime = 0;

int j = 0;

while (true)

{

j = j % COUNT;

startTime = GetTickCount();

while ((GetTickCount() - startTime) <= busySpan[j]) ;

Sleep(idleSpan[j]);

j++;

}

return 0;

}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: