Re: [android-kernel] Behavior of 'UEventd' in Android

2013-05-11 Thread Emeric VIGIER
Suspend routine runs in this order: 1. freeze processes 2. suspend drivers 3. turn off CPU Resume routine is the opposite: 1. turn on CPU 2. resume drivers 3. wake up processes Sorting the actions differently would most probably cause system crash: - what would drivers do without the CPU? - How w

[android-kernel] Behavior of 'UEventd' in Android

2013-05-09 Thread Durgadoss Ramanathan
Hi, I have a driver that sends a UEvent [1] on its resume call back. I want the 'ueventd' to catch this event, and act upon this. My doubt is whether ueventd be already running when my driver's resume method is being invoked . In other words, when exactly does the ueventd start running once the