I am trying to find some library for accessing performance counter in ubuntu. But I am not able to find it. In linux website I have found about pmc.h library. But I am not able to find it in my system. Can someone help me to find some library to retrieve performance counters data?

I am using ubuntu 11 and i386 processor. Another strange thing I observed in my ubuntu is, I am not able to find /usr/include/sys directory. This is required for me to use socket.h :(

link|improve this question

17% accept rate
feedback

1 Answer

  1. I'm not aware about pmc (seems like it exists only for Darwin?), but consider using libpfm:

    sudo apt-cache search libpfm
    
  2. /usr/include/socket.h belongs to libc6-dev:

    dpkg -L libc6-dev | grep socket.h
    

    Install libc6-dev via:

    sudo apt-get install libc6-dev
    
link|improve this answer
Thanks Andrejs, socket.h problem resolved. Now, I am just hoping for performance counters problem resolution – bobby Feb 17 at 17:50
Check the updated answer. – Andrejs Cainikovs Feb 17 at 17:53
"sudo apt-cache search libpfm" is not displaying anything. :( – bobby Feb 17 at 18:15
Hmm, true.. Oneiric (Ubuntu 11) does not have this package (yet?): packages.ubuntu.com/… – Andrejs Cainikovs Feb 19 at 16:01
1  
Anyway, nothing stops you building it from the sources. – Andrejs Cainikovs Feb 19 at 16:02
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.