kernel: Add scheduler_op for dumping thread data

This commit is contained in:
Pawel Dziepak
2013-10-09 02:08:49 +02:00
parent 3e91b082c8
commit a2bdd2842f
+4
View File
@@ -67,6 +67,10 @@ struct scheduler_ops {
lock.
*/
void (*start)(void);
/*! Dumps scheduler specific thread information.
*/
void (*dump_thread_data)(struct scheduler_thread_data* scheduler_data);
};
extern struct scheduler_ops* gScheduler;