svn commit: r341443 - head/sys/kern

Mark Johnston markj at FreeBSD.org
Mon Dec 3 21:07:11 UTC 2018


Author: markj
Date: Mon Dec  3 21:07:10 2018
New Revision: 341443
URL: https://svnweb.freebsd.org/changeset/base/341443

Log:
  Add a missing definition for the !COMPAT_FREEBSD32 case.
  
  Reported by:	jenkins
  MFC with:	r341442
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/sys/kern/sys_process.c

Modified: head/sys/kern/sys_process.c
==============================================================================
--- head/sys/kern/sys_process.c	Mon Dec  3 20:54:17 2018	(r341442)
+++ head/sys/kern/sys_process.c	Mon Dec  3 21:07:10 2018	(r341443)
@@ -551,6 +551,7 @@ struct ptrace_args {
 	copyout(k ## 32, u, s ## 32) : \
 	copyout(k, u, s)
 #else
+#define	BZERO(a, s)		bzero(a, s)
 #define	COPYIN(u, k, s)		copyin(u, k, s)
 #define	COPYOUT(k, u, s)	copyout(k, u, s)
 #endif


More information about the svn-src-all mailing list