From owner-svn-src-head@FreeBSD.ORG Tue Apr 27 09:48:44 2010 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 36361106566B; Tue, 27 Apr 2010 09:48:44 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 2484B8FC21; Tue, 27 Apr 2010 09:48:44 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id o3R9mi1E069869; Tue, 27 Apr 2010 09:48:44 GMT (envelope-from kib@svn.freebsd.org) Received: (from kib@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id o3R9mhWG069860; Tue, 27 Apr 2010 09:48:43 GMT (envelope-from kib@svn.freebsd.org) Message-Id: <201004270948.o3R9mhWG069860@svn.freebsd.org> From: Konstantin Belousov Date: Tue, 27 Apr 2010 09:48:43 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r207269 - in head/sys: amd64/include arm/include i386/include ia64/include mips/include powerpc/include sparc64/include sun4v/include X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Apr 2010 09:48:44 -0000 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 instead of #define. 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_ */