svn commit: r226112 - in head/sys: amd64/include arm/include
i386/include ia64/include mips/include powerpc/include
sparc64/include
Konstantin Belousov
kib at FreeBSD.org
Fri Oct 7 16:09:45 UTC 2011
Author: kib
Date: Fri Oct 7 16:09:44 2011
New Revision: 226112
URL: http://svn.freebsd.org/changeset/base/226112
Log:
Remove unused define.
MFC after: 1 month
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
Modified: head/sys/amd64/include/proc.h
==============================================================================
--- head/sys/amd64/include/proc.h Fri Oct 7 15:05:24 2011 (r226111)
+++ head/sys/amd64/include/proc.h Fri Oct 7 16:09:44 2011 (r226112)
@@ -85,8 +85,6 @@ struct syscall_args {
register_t args[8];
int narg;
};
-#define HAVE_SYSCALL_ARGS_DEF 1
-
#endif /* _KERNEL */
#endif /* !_MACHINE_PROC_H_ */
Modified: head/sys/arm/include/proc.h
==============================================================================
--- head/sys/arm/include/proc.h Fri Oct 7 15:05:24 2011 (r226111)
+++ head/sys/arm/include/proc.h Fri Oct 7 16:09:44 2011 (r226112)
@@ -71,6 +71,5 @@ struct syscall_args {
u_int nap;
u_int32_t insn;
};
-#define HAVE_SYSCALL_ARGS_DEF 1
#endif /* !_MACHINE_PROC_H_ */
Modified: head/sys/i386/include/proc.h
==============================================================================
--- head/sys/i386/include/proc.h Fri Oct 7 15:05:24 2011 (r226111)
+++ head/sys/i386/include/proc.h Fri Oct 7 16:09:44 2011 (r226112)
@@ -83,8 +83,6 @@ struct syscall_args {
register_t args[8];
int narg;
};
-#define HAVE_SYSCALL_ARGS_DEF 1
-
#endif /* _KERNEL */
#endif /* !_MACHINE_PROC_H_ */
Modified: head/sys/ia64/include/proc.h
==============================================================================
--- head/sys/ia64/include/proc.h Fri Oct 7 15:05:24 2011 (r226111)
+++ head/sys/ia64/include/proc.h Fri Oct 7 16:09:44 2011 (r226112)
@@ -49,7 +49,6 @@ struct syscall_args {
register_t args32[8];
int narg;
};
-#define HAVE_SYSCALL_ARGS_DEF 1
#endif
#endif /* !_MACHINE_PROC_H_ */
Modified: head/sys/mips/include/proc.h
==============================================================================
--- head/sys/mips/include/proc.h Fri Oct 7 15:05:24 2011 (r226111)
+++ head/sys/mips/include/proc.h Fri Oct 7 16:09:44 2011 (r226112)
@@ -80,7 +80,6 @@ struct syscall_args {
int narg;
struct trapframe *trapframe;
};
-#define HAVE_SYSCALL_ARGS_DEF 1
#endif
#ifdef __mips_n64
Modified: head/sys/powerpc/include/proc.h
==============================================================================
--- head/sys/powerpc/include/proc.h Fri Oct 7 15:05:24 2011 (r226111)
+++ head/sys/powerpc/include/proc.h Fri Oct 7 16:09:44 2011 (r226112)
@@ -60,7 +60,6 @@ struct syscall_args {
register_t args[10];
int narg;
};
-#define HAVE_SYSCALL_ARGS_DEF 1
#endif
#endif /* !_MACHINE_PROC_H_ */
Modified: head/sys/sparc64/include/proc.h
==============================================================================
--- head/sys/sparc64/include/proc.h Fri Oct 7 15:05:24 2011 (r226111)
+++ head/sys/sparc64/include/proc.h Fri Oct 7 16:09:44 2011 (r226112)
@@ -61,7 +61,6 @@ struct syscall_args {
register_t args[8];
int narg;
};
-#define HAVE_SYSCALL_ARGS_DEF 1
#endif
More information about the svn-src-head
mailing list