svn commit: r314392 - stable/10/sys/sys
Konstantin Belousov
kib at FreeBSD.org
Tue Feb 28 15:03:35 UTC 2017
Author: kib
Date: Tue Feb 28 15:03:34 2017
New Revision: 314392
URL: https://svnweb.freebsd.org/changeset/base/314392
Log:
MFC r313734:
Add RLIM_SAVED_MAX and RLIM_SAVED_CUR symbols.
Modified:
stable/10/sys/sys/resource.h
Directory Properties:
stable/10/ (props changed)
Modified: stable/10/sys/sys/resource.h
==============================================================================
--- stable/10/sys/sys/resource.h Tue Feb 28 14:48:52 2017 (r314391)
+++ stable/10/sys/sys/resource.h Tue Feb 28 15:03:34 2017 (r314392)
@@ -107,8 +107,8 @@ struct __wrusage {
#define RLIM_NLIMITS 13 /* number of resource limits */
#define RLIM_INFINITY ((rlim_t)(((uint64_t)1 << 63) - 1))
-/* XXX Missing: RLIM_SAVED_MAX, RLIM_SAVED_CUR */
-
+#define RLIM_SAVED_MAX RLIM_INFINITY
+#define RLIM_SAVED_CUR RLIM_INFINITY
/*
* Resource limit string identifiers
More information about the svn-src-all
mailing list