objective-cmultithreadingcocoainstrumentsqtkit

How to determine what's blocking the main thread


So I restructured a central part in my Cocoa application (I really had to!) and I am running into issues since then.

Quick outline: my application controls the playback of QuickTime movies so that they are in sync with external timecode.

Thus, external timecode arrives on a CoreMIDI callback thread and gets posted to the application about 25 times per sec. The sync is then checked and adjusted if it needs to be. All this checking and adjusting is done on the main thread.

Even if I put all the processing on a background thread it would be a ton of work as I'm currently using a lot of GCD blocks and I would need to rewrite a lot of functions so that they can be called from NSThread. So I would like to make sure first if it will solve my problem.

The problem

My Core MIDI callback is always called in time, but the GCD block that is dispatched to the main queue is sometimes blocked for up to 500 ms. Understandable that adjusting the sync does not quite work if that happens. I couldn't find a reason for it, so I'm guessing that I'm doing something that blocks the main thread.

I'm familiar with Instruments, but I couldn't find the right mode to see what keeps my messages from being processed in time.

I would appreciate if anyone could help. Don't know what I can do about it. Thanks in advance!


Solution

  • You may be blocking the main thread or you might be flooding it with events.

    I would suggest three things:

    In general, instrumenting the main event loop is a bit tricky. The CPU profiler in Instruments can be quite helpful. It may come as a surprise, but so can the Allocations instrument. In particular, you can use the Allocations instrument to measure memory throughput. If there are tons of transient (short lived) allocations, it'll chew up a ton of CPU time doing all those allocations/deallocations.