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

I tried udev as recommended (udevadm monitor). The VGA-Plug is reported after approx. two seconds. If I poll it, the change is reported almost instantly. What happens here?

share|improve this question

1 Answer

up vote 3 down vote accepted
+25

If the polling was constant there would be much wasted CPU time, and the event timing would be skewed in the log output. When you manually poll, its occurring instantly, no timeout.

share|improve this answer
So udev does polling itself, instead of subscription? – Tass Jun 4 '11 at 10:36
2  
udev must poll - modules don't make their own device nodes on the filesystem, so udev has to watch the list of loaded modules - detect when a supported module has been loaded, execute the rules associated with it, then create the device. – synthesizerpatel Jun 7 '11 at 10:37

Your Answer

 
discard

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

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