svn commit: r258900 - head/sys/kern
Pawel Jakub Dawidek
pjd at FreeBSD.org
Wed Dec 4 00:10:38 UTC 2013
Author: pjd
Date: Wed Dec 4 00:10:37 2013
New Revision: 258900
URL: http://svnweb.freebsd.org/changeset/base/258900
Log:
Break the loop once we know we have the SYF_CAPENABLED flag.
Modified:
head/sys/kern/makesyscalls.sh
Modified: head/sys/kern/makesyscalls.sh
==============================================================================
--- head/sys/kern/makesyscalls.sh Tue Dec 3 23:16:08 2013 (r258899)
+++ head/sys/kern/makesyscalls.sh Wed Dec 4 00:10:37 2013 (r258900)
@@ -326,6 +326,7 @@ s/\$//g
for (cap in capenabled) {
if (funcname == capenabled[cap]) {
flags = "SYF_CAPENABLED";
+ break;
}
}
More information about the svn-src-head
mailing list