svn commit: r305515 - stable/11/sys/kern
Ed Maste
emaste at FreeBSD.org
Wed Sep 7 02:54:41 UTC 2016
Author: emaste
Date: Wed Sep 7 02:54:40 2016
New Revision: 305515
URL: https://svnweb.freebsd.org/changeset/base/305515
Log:
Regen after r305514, allow getdtablesize in capability mode
Modified:
stable/11/sys/kern/init_sysent.c
Modified: stable/11/sys/kern/init_sysent.c
==============================================================================
--- stable/11/sys/kern/init_sysent.c Wed Sep 7 02:53:38 2016 (r305514)
+++ stable/11/sys/kern/init_sysent.c Wed Sep 7 02:54:40 2016 (r305515)
@@ -135,7 +135,7 @@ struct sysent sysent[] = {
{ AS(getitimer_args), (sy_call_t *)sys_getitimer, AUE_GETITIMER, NULL, 0, 0, SYF_CAPENABLED, SY_THR_STATIC }, /* 86 = getitimer */
{ compat(AS(gethostname_args),gethostname), AUE_SYSCTL, NULL, 0, 0, SYF_CAPENABLED, SY_THR_STATIC }, /* 87 = old gethostname */
{ compat(AS(sethostname_args),sethostname), AUE_SYSCTL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 88 = old sethostname */
- { 0, (sy_call_t *)sys_getdtablesize, AUE_GETDTABLESIZE, NULL, 0, 0, 0, SY_THR_STATIC }, /* 89 = getdtablesize */
+ { 0, (sy_call_t *)sys_getdtablesize, AUE_GETDTABLESIZE, NULL, 0, 0, SYF_CAPENABLED, SY_THR_STATIC }, /* 89 = getdtablesize */
{ AS(dup2_args), (sy_call_t *)sys_dup2, AUE_DUP2, NULL, 0, 0, SYF_CAPENABLED, SY_THR_STATIC }, /* 90 = dup2 */
{ 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0, SY_THR_ABSENT }, /* 91 = getdopt */
{ AS(fcntl_args), (sy_call_t *)sys_fcntl, AUE_FCNTL, NULL, 0, 0, SYF_CAPENABLED, SY_THR_STATIC }, /* 92 = fcntl */
More information about the svn-src-stable-11
mailing list