Re: [android-kernel] Scheduling in Linux

2011-08-04 Thread Sung-Taek Lim
If isr is getting called continuously as you said, kernel thread which has lower priority than any isr will not get opportunity to run on cpu. The rate of irq should be throttled properly. 2011. 7. 30. 오전 6:25에 "Pandi" 님이 작성: > > Hi, > > I am working on Linux Kernel 2.6.35 driver. I have code like

[android-kernel] Scheduling in Linux

2011-07-29 Thread Pandi
Hi, I am working on Linux Kernel 2.6.35 driver. I have code like as follows /// Process A { wait_event(event_q,condition); } / /// ISR { fun_1(); } fun_1(){ wakeup(event); } / Problem here is Pro