vote up 1 vote down star
1

How to measure amount of time given by a mutex to the OS? The main goal is to detect a mutex, that blocks threads for largest amount of time.

PS: I tried oprofile. It reports 30% of time spent inside vmlinux/.poll_idle. This is unexpected, because the app is designed to take 100% of its core. Therefore, I'm suspecting, that the time is given back to the OS while waiting for some mutex, and oprofile reports it as the IDLE time.

flag
can you be more specific? I understand that your goal is to optimize some system and are looking for mutexes to get some gains. What do you mean by time given by a mutex? Are you interested in the overhead of mutexes from your own application in the context of some operating system, or in the performance and scaleability of an operating system. Which os? Because some OS's come with good tools. – Adriaan Aug 6 at 13:04
Which Operating System? – Karl Voigtland Aug 6 at 13:35
Linux [15 char pad] – anon Aug 6 at 13:36
What about using pthread_mutex_trylock() to poll the mutex in a loop without blocking? – Karl Voigtland Aug 6 at 13:42

4 Answers

vote up 5 vote down

Profile.

Whenever the question is "What really takes the [most|least] time?", the answer is always "Profile to find out.".

link|flag
Can you suggest an appropriate profiler for this task? I assume that's what OP was really asking for, as well. Oprofile and callgrind, for example, are probably not helpful to measure this kind of stuff. Correct if I'm wrong. The intel and amd profilers might be better, but I never tried them. So that's why I am curious about the question as well. – tsg Aug 6 at 13:10
It will depend on the operating system and compiler. – Krugar Aug 6 at 15:08
vote up 2 vote down

As suggested - profile, but decide before what do you want to measure - elapsed time (time threads were blocked), or user/kernel time (time it cost you to perform synchronization). In different scenarios you might want to measure one or another, or both.

link|flag
vote up 0 vote down

You could profile your program, using say OProfile on linux. Then filter out your results to look at the time spent in pthread_mutex_lock() for each mutex, or your higher-level function that performs the locking. Since the program will block inside the lock function call until the mutex is aquired, profiling the time spent in that function should give you an idea of which mutexes are your most expensive.

link|flag
vote up 0 vote down
start = GetTime();
Mutex.Lock();
stop = GetTime();

elapsedTime = stop - start;

elaspedTime is the amount of time it took to grab the mutex. If it is bigger than some small value, it's because another thread has the mutex. This won't show how long the OS has the mutex, only that another thread has it.

link|flag

Your Answer

Get an OpenID
or

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