Thursday 1 June 2017

linux - Reading performance counters for Intel Xeon in userspace

I want to read performance counters for intel xeon using a shell script in userspace. Oprofile will not work as it is too rigid to fulfill my requirements. I am using FC13.
Thanks

No comments:

Post a Comment

c++ - Does curly brackets matter for empty constructor?

Those brackets declare an empty, inline constructor. In that case, with them, the constructor does exist, it merely does nothing more than t...