LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Programming (https://www.linuxquestions.org/questions/programming-9/)
-   -   QueryPerformanceCounter (https://www.linuxquestions.org/questions/programming-9/queryperformancecounter-529828/)

vedanu 02-17-2007 01:31 AM

QueryPerformanceCounter
 
Hello friends,

Can any one tell me the alternative of QueryPerformanceCounter
and how to make this function to work as same in linux platform which was written in windows platform

Quote:

int entropy_fun(unsigned char buf[], unsigned int len)
{
unsigned __int64 pentium_tsc[1];
unsigned int i;

QueryPerformanceCounter((LARGE_INTEGER *)pentium_tsc);
for(i = 0; i < 8 && i < len; ++i)
buf[i] = ((unsigned char*)pentium_tsc)[i];
return i;
}

Thanks & Regards,
Anu:newbie: http://linuxquestions.cachefly.net/i...ies/newbie.gif

crabboy 02-17-2007 08:16 AM

Please follow up here:

http://www.linuxquestions.org/questi...76#post2634076


All times are GMT -5. The time now is 03:21 PM.