Chinaunix首页 | 论坛 | 博客
  • 博客访问: 2035215
  • 博文数量: 519
  • 博客积分: 10070
  • 博客等级: 上将
  • 技术积分: 3985
  • 用 户 组: 普通用户
  • 注册时间: 2006-05-29 14:05
个人简介

只问耕耘

文章分类

全部博文(519)

文章存档

2016年(1)

2013年(5)

2011年(46)

2010年(220)

2009年(51)

2008年(39)

2007年(141)

2006年(16)

我的朋友

分类: 系统运维

2011-09-13 16:47:19

Introduction
An application that is multi-threaded or an application that creates threads may have a contention problem on a multi-processor machine. The threads may actually be running at the same time on different processors. By binding a process to a cpu, no two threads are running at the same time and are not interfering with one another. Your application will run as if on a single-processor machine.
Binding on NT
You can bind a process to a cpu either from the Task Manager, using Win32 calls or permanently setting the processor affinity for an application executable.
(You need NT Administrator privileges to bind a process on NT.)
Binding from the Task Manager
1. Select the "Processes" tab in Task Manager.
2. Right mouse click on the process you want to bind and select "Set Affinity".
3. Select the cpu you want your application to run in.
 
Binding Using Win32 Calls
Use the SetProcessAffinityMask() function to bind a particular application to a cpu. The function is in the kernel32.dll. The first parameter is a handle to a process. Use the GetCurrentProcess to get the handle. The second parameter describes which processors the process should run on.
Declare the functions as follows:
function ulong GetCurrentProcess() library "kernel32.dll"
function boolean SetProcessAffinityMask(ulong hnd, ulong lpProcessAffinityMask) library "kernel32.dll"
 
Ulong lul_process,lul_lpProcessAffinityMask
Boolean b_result
integer ai_processor
// 0123 – As they appear in Task Manager (CPU 0, CPU 1, CPU 2, CPU 3)
ai_processor = 2
CHOOSE CASE ai_processor
CASE 0
lul_lpProcessAffinityMask = 1
CASE 1
lul_lpProcessAffinityMask = 2
CASE 2
lul_lpProcessAffinityMask = 4
CASE 3
lul_lpProcessAffinityMask = 8
CASE ELSE
Return FALSE
END CHOOSE
lul_process = GetCurrentProcess( )
b_result = SetProcessAffinityMask(lul_process, lul_lpProcessAffinityMask )
Permanently Setting the Processor Affinity for an Application Executable
On Windows NT, Windows 2000 or Windows XP, you can permanently set the processor affinity for an application executable by
using the imagecfg.exe tool.  This tool is located in the \support\debug\i386 folder on a Windows NT cdrom and from the Windows 2000 or Windows XP Server Resource Kit Supplement.  Open a DOS prompt and enter in the following:
imagecfg -a 0xn c:\program files\sybase\Jaguar CTS\bin\jagsrv.exe
where 0xn is the affinity mask and maps to a cpu as follows:
CPU         Mask
0                0x1
1                0x2
2                0x4
3                0x8
4                0x10
5                0x20
 
Binding on Solaris
You can bind a process to a cpu at the command line or using a shell script.
Binding at the command line
1. Use psrinfo to find the processor id # you want to bind to
2. pbind –b
Binding using a shell script
#!/usr/bin/sh
/export/home/mydir/testapp.exe &
/usr/sbin/pbind –b 1 $!
 
 
阅读(813) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~