svn commit: r303854 - stable/11/sys/kern

Bryan Drewery bdrewery at FreeBSD.org
Mon Aug 8 20:23:12 UTC 2016


Author: bdrewery
Date: Mon Aug  8 20:23:11 2016
New Revision: 303854
URL: https://svnweb.freebsd.org/changeset/base/303854

Log:
  MFC r303729:
  
    Correct some comments.
  
  Approved by:	re (kib)

Modified:
  stable/11/sys/kern/syscalls.master
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/sys/kern/syscalls.master
==============================================================================
--- stable/11/sys/kern/syscalls.master	Mon Aug  8 20:15:00 2016	(r303853)
+++ stable/11/sys/kern/syscalls.master	Mon Aug  8 20:23:11 2016	(r303854)
@@ -25,10 +25,10 @@
 ; types:
 ;	STD	always included
 ;	COMPAT	included on COMPAT #ifdef
-;	COMPAT4	included on COMPAT4 #ifdef (FreeBSD 4 compat)
-;	COMPAT6	included on COMPAT6 #ifdef (FreeBSD 6 compat)
-;	COMPAT7	included on COMPAT7 #ifdef (FreeBSD 7 compat)
-;	COMPAT10 included on COMPAT7 #ifdef (FreeBSD 10 compat)
+;	COMPAT4	included on COMPAT_FREEBSD4 #ifdef (FreeBSD 4 compat)
+;	COMPAT6	included on COMPAT_FREEBSD6 #ifdef (FreeBSD 6 compat)
+;	COMPAT7	included on COMPAT_FREEBSD7 #ifdef (FreeBSD 7 compat)
+;	COMPAT10 included on COMPAT_FREEBSD10 #ifdef (FreeBSD 10 compat)
 ;	OBSOL	obsolete, not included in system, only specifies name
 ;	UNIMPL	not implemented, placeholder only
 ;	NOSTD	implemented but as a lkm that can be statically


More information about the svn-src-all mailing list