Browse Source

Kernel: init: Make comment clearer

Marco 4 năm trước cách đây
mục cha
commit
9b27b0cd1a
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  1. 2 2
      Kernel/init.cpp

+ 2 - 2
Kernel/init.cpp

@@ -100,8 +100,8 @@ namespace Kernel {
 [[noreturn]] static void init_stage2(void*);
 [[noreturn]] static void init_stage2(void*);
 static void setup_serial_debug();
 static void setup_serial_debug();
 
 
-// boot.S expects these functions precisely this this. We declare them here
-// to ensure the signatures don't accidentally change.
+// boot.S expects these functions to exactly have the following signatures.
+// We declare them here to ensure their signatures don't accidentally change.
 extern "C" void init_finished(u32 cpu);
 extern "C" void init_finished(u32 cpu);
 extern "C" [[noreturn]] void init_ap(u32 cpu, Processor* processor_info);
 extern "C" [[noreturn]] void init_ap(u32 cpu, Processor* processor_info);
 extern "C" [[noreturn]] void init();
 extern "C" [[noreturn]] void init();