comp.os.mswindows.programmer.win32
  Home FAQ Contact Sign in
comp.os.mswindows.programmer.win32 only
 
Advanced search
April 2008
motuwethfrsasuw
 123456 14
78910111213 15
14151617181920 16
21222324252627 17
282930     18
2008
 Jan   Feb   Mar   Apr 
 May   Jun   Jul   Aug 
 Sep   Oct   Nov   Dec 
2008 2007    
total
comp.os ... win32 Profile…
RELATED GROUPS

POPULAR GROUPS

more...

 Up
  Why does KiInterruptDispatch consume 50%% of my processor power         


Author: PeLi
Date: Apr 8, 2008 03:24

Hi all,

I needed to speed up a very timecritical process.
Therefore I split the whole task into 2 or more threads and hopored
my dual core processor would speed up, by assigning each thread to a
different processor.

This is basically what I did:

for( th=0, Offs=0 ; th ThreadHandles[th] = CreateThread(NULL, 0, MySlowRoutine,
(LPVOID)Params[th], 0, NULL) ; } ;

for( th=0 ; th {
WaitForSingleObject( ThreadHandles[th], INFINITE ) ;
CloseHandle( ThreadHandles[th] );
} ;

All the created threads execute the same function, but operate on
different data.

------------------------
Show full article (1.21Kb)
10 Comments
  全香港最濺IT Manager http://edmund.0fees.net/         


Author: it_super_manager
Date: Apr 8, 2008 02:38

全香港最濺IT Manager http://edmund.0fees.net/
www.funzy.com
www.funmobile.com
全香港最濺IT Manager http://edmund.0fees.net/
www.funzy.com
www.funmobile.com
全香港最濺IT Manager http://edmund.0fees.net/
www.funzy.com
www.funmobile.com
全香港最濺IT Manager http://edmund.0fees.net/
www.funzy.com
www.funmobile.com
全香港最濺IT Manager http://edmund.0fees.net/
www.funzy.com
www.funmobile.com
全香港最濺IT Manager http://edmund.0fees.net/
www.funzy.com
www.funmobile.com
全香港最濺IT Manager http://edmund.0fees.net/
www.funzy.com ...
Show full article (1.51Kb)
no comments
  Physical drive name         


Author: CAHEK
Date: Apr 8, 2008 01:32

Hi all!
I need to display the name of my physical hard drive
anybody knows how to do this?
2 Comments