4

TIF_NEED_RESCHEDLinux スケジューラ (CFS など)の目的は何ですか? 新しいスケジューリング クラスを作成する場合、このフラグを使用できますか? はいの場合、このフラグを新しいスケジューリング クラスのどこでどのように使用できますか?

4

5 に答える 5

2

TIF_NEED_RESCHED is one of the thread information flags. It tells that the schedule needs to be called while interrupt and userspace return paths. See the __schedule function description here...

于 2013-09-02T19:16:16.457 に答える