clocksource.c 290 B

12345678910
  1. #include "clocksource.h"
  2. #include <common/kprint.h>
  3. void run_watchdog_kthread()
  4. {
  5. kerror("run_watchdog_kthread");
  6. while(1);
  7. // todo: 进程管理重构后,改掉这里,换到rust的实现
  8. // kthread_run(rs_clocksource_watchdog_kthread, NULL, "clocksource_watchdog");
  9. }