svn commit: r314391 - stable/11/sys/sys

Konstantin Belousov kib at FreeBSD.org
Tue Feb 28 14:48:53 UTC 2017


Author: kib
Date: Tue Feb 28 14:48:52 2017
New Revision: 314391
URL: https://svnweb.freebsd.org/changeset/base/314391

Log:
  MFC r313734:
  Add RLIM_SAVED_MAX and RLIM_SAVED_CUR symbols.

Modified:
  stable/11/sys/sys/resource.h
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/sys/sys/resource.h
==============================================================================
--- stable/11/sys/sys/resource.h	Tue Feb 28 14:42:57 2017	(r314390)
+++ stable/11/sys/sys/resource.h	Tue Feb 28 14:48:52 2017	(r314391)
@@ -119,8 +119,8 @@ struct __wrusage {
 #define	RLIM_NLIMITS	15		/* 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