Author: kib
Date: Tue Apr 27 09:48:43 2010
New Revision: 207269
URL: http://svn.freebsd.org/changeset/base/207269

Log:
  Style: use #define<TAB> instead of #define<SPACE>.
  
  Noted by:     bde, pluknet gmail com
  MFC after:    11 days

Modified:
  head/sys/amd64/include/proc.h
  head/sys/arm/include/proc.h
  head/sys/i386/include/proc.h
  head/sys/ia64/include/proc.h
  head/sys/mips/include/proc.h
  head/sys/powerpc/include/proc.h
  head/sys/sparc64/include/proc.h
  head/sys/sun4v/include/proc.h

Modified: head/sys/amd64/include/proc.h
==============================================================================
--- head/sys/amd64/include/proc.h       Tue Apr 27 09:47:14 2010        
(r207268)
+++ head/sys/amd64/include/proc.h       Tue Apr 27 09:48:43 2010        
(r207269)
@@ -53,8 +53,8 @@ struct mdproc {
        struct system_segment_descriptor md_ldt_sd;
 };
 
-#define KINFO_PROC_SIZE 1088
-#define KINFO_PROC32_SIZE 768
+#define        KINFO_PROC_SIZE 1088
+#define        KINFO_PROC32_SIZE 768
 
 #ifdef _KERNEL
 

Modified: head/sys/arm/include/proc.h
==============================================================================
--- head/sys/arm/include/proc.h Tue Apr 27 09:47:14 2010        (r207268)
+++ head/sys/arm/include/proc.h Tue Apr 27 09:48:43 2010        (r207269)
@@ -60,6 +60,6 @@ struct mdproc {
        void    *md_sigtramp;
 };
 
-#define KINFO_PROC_SIZE 792
+#define        KINFO_PROC_SIZE 792
 
 #endif /* !_MACHINE_PROC_H_ */

Modified: head/sys/i386/include/proc.h
==============================================================================
--- head/sys/i386/include/proc.h        Tue Apr 27 09:47:14 2010        
(r207268)
+++ head/sys/i386/include/proc.h        Tue Apr 27 09:48:43 2010        
(r207269)
@@ -57,7 +57,7 @@ struct mdproc {
        struct proc_ldt *md_ldt;        /* (t) per-process ldt */
 };
 
-#define KINFO_PROC_SIZE 768
+#define        KINFO_PROC_SIZE 768
 
 #ifdef _KERNEL
 

Modified: head/sys/ia64/include/proc.h
==============================================================================
--- head/sys/ia64/include/proc.h        Tue Apr 27 09:47:14 2010        
(r207268)
+++ head/sys/ia64/include/proc.h        Tue Apr 27 09:48:43 2010        
(r207269)
@@ -38,7 +38,7 @@ struct mdproc {
        int             __dummy;        /* Avoid having an empty struct. */
 };
 
-#define KINFO_PROC_SIZE 1088
-#define KINFO_PROC32_SIZE 768
+#define        KINFO_PROC_SIZE 1088
+#define        KINFO_PROC32_SIZE 768
 
 #endif /* !_MACHINE_PROC_H_ */

Modified: head/sys/mips/include/proc.h
==============================================================================
--- head/sys/mips/include/proc.h        Tue Apr 27 09:47:14 2010        
(r207268)
+++ head/sys/mips/include/proc.h        Tue Apr 27 09:48:43 2010        
(r207269)
@@ -69,9 +69,9 @@ void  mips_cpu_switch(struct thread *, st
 void   mips_cpu_throw(struct thread *, struct thread *);
 
 #ifdef __mips_n64
-#define KINFO_PROC_SIZE 1088
+#define        KINFO_PROC_SIZE 1088
 #else
-#define KINFO_PROC_SIZE 816
+#define        KINFO_PROC_SIZE 816
 #endif
 
 #endif /* !_MACHINE_PROC_H_ */

Modified: head/sys/powerpc/include/proc.h
==============================================================================
--- head/sys/powerpc/include/proc.h     Tue Apr 27 09:47:14 2010        
(r207268)
+++ head/sys/powerpc/include/proc.h     Tue Apr 27 09:48:43 2010        
(r207269)
@@ -46,6 +46,6 @@ struct mdthread {
 struct mdproc {
 };
 
-#define KINFO_PROC_SIZE 768
+#define        KINFO_PROC_SIZE 768
 
 #endif /* !_MACHINE_PROC_H_ */

Modified: head/sys/sparc64/include/proc.h
==============================================================================
--- head/sys/sparc64/include/proc.h     Tue Apr 27 09:47:14 2010        
(r207268)
+++ head/sys/sparc64/include/proc.h     Tue Apr 27 09:48:43 2010        
(r207269)
@@ -51,6 +51,6 @@ struct mdproc {
        void    *md_sigtramp;
 };
 
-#define KINFO_PROC_SIZE 1088
+#define        KINFO_PROC_SIZE 1088
 
 #endif /* !_MACHINE_PROC_H_ */

Modified: head/sys/sun4v/include/proc.h
==============================================================================
--- head/sys/sun4v/include/proc.h       Tue Apr 27 09:47:14 2010        
(r207268)
+++ head/sys/sun4v/include/proc.h       Tue Apr 27 09:48:43 2010        
(r207269)
@@ -51,6 +51,6 @@ struct mdproc {
        void    *md_sigtramp;
 };
 
-#define KINFO_PROC_SIZE 1088
+#define        KINFO_PROC_SIZE 1088
 
 #endif /* !_MACHINE_PROC_H_ */
_______________________________________________
svn-src-head@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to