[haiku-commits] r37254 - in haiku/trunk/src/system/kernel: arch/x86 debug device_manager

  • From: ingo_weinhold@xxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Fri, 25 Jun 2010 15:38:36 +0200 (CEST)

Author: bonefish
Date: 2010-06-25 15:38:36 +0200 (Fri, 25 Jun 2010)
New Revision: 37254
Changeset: http://dev.haiku-os.org/changeset/37254/haiku

Modified:
   haiku/trunk/src/system/kernel/arch/x86/arch_real_time_clock.cpp
   haiku/trunk/src/system/kernel/debug/debug_builtin_commands.cpp
   haiku/trunk/src/system/kernel/device_manager/FileDevice.cpp
Log:
Added missing includes (respectively they would be missing soon).


Modified: haiku/trunk/src/system/kernel/arch/x86/arch_real_time_clock.cpp
===================================================================
--- haiku/trunk/src/system/kernel/arch/x86/arch_real_time_clock.cpp     
2010-06-25 13:31:17 UTC (rev 37253)
+++ haiku/trunk/src/system/kernel/arch/x86/arch_real_time_clock.cpp     
2010-06-25 13:38:36 UTC (rev 37254)
@@ -8,6 +8,7 @@
 
 #include <arch/real_time_clock.h>
 #include <arch/cpu.h>
+#include <boot/kernel_args.h>
 
 #include <real_time_clock.h>
 #include <real_time_data.h>
@@ -214,7 +215,7 @@
 
        secs_to_cmos(seconds, &cmos);
        write_cmos_clock(&cmos);
-}      
+}
 
 
 void

Modified: haiku/trunk/src/system/kernel/debug/debug_builtin_commands.cpp
===================================================================
--- haiku/trunk/src/system/kernel/debug/debug_builtin_commands.cpp      
2010-06-25 13:31:17 UTC (rev 37253)
+++ haiku/trunk/src/system/kernel/debug/debug_builtin_commands.cpp      
2010-06-25 13:38:36 UTC (rev 37254)
@@ -10,6 +10,8 @@
 #include "debug_builtin_commands.h"
 
 #include <ctype.h>
+#include <string.h>
+
 #include <debug.h>
 #include <kernel.h>
 

Modified: haiku/trunk/src/system/kernel/device_manager/FileDevice.cpp
===================================================================
--- haiku/trunk/src/system/kernel/device_manager/FileDevice.cpp 2010-06-25 
13:31:17 UTC (rev 37253)
+++ haiku/trunk/src/system/kernel/device_manager/FileDevice.cpp 2010-06-25 
13:38:36 UTC (rev 37254)
@@ -7,6 +7,7 @@
 #include "FileDevice.h"
 
 #include <errno.h>
+#include <string.h>
 #include <unistd.h>
 
 #include <new>


Other related posts:

  • » [haiku-commits] r37254 - in haiku/trunk/src/system/kernel: arch/x86 debug device_manager - ingo_weinhold