diff options
Diffstat (limited to 'sys/kern')
-rw-r--r-- | sys/kern/imgact_aout.c | 4 | ||||
-rw-r--r-- | sys/kern/imgact_elf.c | 4 | ||||
-rw-r--r-- | sys/kern/imgact_gzip.c | 4 | ||||
-rw-r--r-- | sys/kern/kern_resource.c | 4 | ||||
-rw-r--r-- | sys/kern/sysv_shm.c | 3 |
5 files changed, 14 insertions, 5 deletions
diff --git a/sys/kern/imgact_aout.c b/sys/kern/imgact_aout.c index 3c9d9a8..d94b051 100644 --- a/sys/kern/imgact_aout.c +++ b/sys/kern/imgact_aout.c @@ -23,9 +23,11 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: imgact_aout.c,v 1.28 1996/05/02 10:43:16 phk Exp $ + * $Id: imgact_aout.c,v 1.29 1996/08/31 16:52:22 bde Exp $ */ +#include "opt_rlimit.h" + #include <sys/param.h> #include <sys/systm.h> #include <sys/resourcevar.h> diff --git a/sys/kern/imgact_elf.c b/sys/kern/imgact_elf.c index 3eae35a..7abc805 100644 --- a/sys/kern/imgact_elf.c +++ b/sys/kern/imgact_elf.c @@ -26,9 +26,11 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: imgact_elf.c,v 1.11 1996/10/16 20:59:08 sos Exp $ + * $Id: imgact_elf.c,v 1.12 1996/10/24 19:13:00 sos Exp $ */ +#include "opt_rlimit.h" + #include <sys/param.h> #include <sys/systm.h> #include <sys/resourcevar.h> diff --git a/sys/kern/imgact_gzip.c b/sys/kern/imgact_gzip.c index 32498ae..4b9689e 100644 --- a/sys/kern/imgact_gzip.c +++ b/sys/kern/imgact_gzip.c @@ -6,7 +6,7 @@ * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp * ---------------------------------------------------------------------------- * - * $Id: imgact_gzip.c,v 1.23 1996/08/01 22:00:14 phk Exp $ + * $Id: imgact_gzip.c,v 1.24 1996/08/31 16:52:24 bde Exp $ * * This module handles execution of a.out files which have been run through * "gzip". This saves diskspace, but wastes cpu-cycles and VM. @@ -21,6 +21,8 @@ * tidy up unnecesary includes */ +#include "opt_rlimit.h" + #include <sys/param.h> #include <sys/exec.h> #include <sys/imgact.h> diff --git a/sys/kern/kern_resource.c b/sys/kern/kern_resource.c index e0fffd2..4c4aeab 100644 --- a/sys/kern/kern_resource.c +++ b/sys/kern/kern_resource.c @@ -36,9 +36,11 @@ * SUCH DAMAGE. * * @(#)kern_resource.c 8.5 (Berkeley) 1/21/94 - * $Id: kern_resource.c,v 1.19 1996/03/11 06:04:20 hsu Exp $ + * $Id: kern_resource.c,v 1.20 1996/06/08 11:48:28 bde Exp $ */ +#include "opt_rlimit.h" + #include <sys/param.h> #include <sys/systm.h> #include <sys/sysproto.h> diff --git a/sys/kern/sysv_shm.c b/sys/kern/sysv_shm.c index 04ef70b..91dd309 100644 --- a/sys/kern/sysv_shm.c +++ b/sys/kern/sysv_shm.c @@ -1,4 +1,4 @@ -/* $Id: sysv_shm.c,v 1.22 1996/09/07 03:24:44 dyson Exp $ */ +/* $Id: sysv_shm.c,v 1.24 1996/09/10 22:35:25 dyson Exp $ */ /* $NetBSD: sysv_shm.c,v 1.23 1994/07/04 23:25:12 glass Exp $ */ /* @@ -32,6 +32,7 @@ */ #include "opt_sysvipc.h" +#include "opt_rlimit.h" #include <sys/param.h> #include <sys/systm.h> |