Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm writing a chrome plugin and I have to track the move and resize event of chrome, so I open a display by XOpenDisplay(NULL), and use XSelectInput to select the StructureNotifyMask event.

But the problem is that I cannot receive any event if I call XSelectInput in the thread calling NPP_SetWindow, however, if I call that function in a newly created thread, events could be captured.

Why can't I call XSelectInput in the main thread?

Thank you every much.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.