diff options
author | Bill Fumerola <billf@FreeBSD.org> | 1999-05-04 21:08:58 +0000 |
---|---|---|
committer | Bill Fumerola <billf@FreeBSD.org> | 1999-05-04 21:08:58 +0000 |
commit | 93092180524a2b89879f50275267c8878e1ce7f0 (patch) | |
tree | 854d1ce99e863d7ce390618e4a37c07ce3df24fb /sys/modules/procfs | |
parent | 6d790debd1cd9cc003d9a388a5662076102e16f0 (diff) | |
download | src-93092180524a2b89879f50275267c8878e1ce7f0.tar.gz src-93092180524a2b89879f50275267c8878e1ce7f0.zip |
Add procfs_rlimit.c so the kernel actually compiles.
PR: kern/11497
Submitted by: Jos Backus <jos.backus@nl.origin-it.com> (misordered patch)
Pointy Hat: phk, adrian
Notes
Notes:
svn path=/head/; revision=46453
Diffstat (limited to 'sys/modules/procfs')
-rw-r--r-- | sys/modules/procfs/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sys/modules/procfs/Makefile b/sys/modules/procfs/Makefile index b7b5bd1f587d..1ff51be5dd8c 100644 --- a/sys/modules/procfs/Makefile +++ b/sys/modules/procfs/Makefile @@ -1,9 +1,10 @@ -# $Id: Makefile,v 1.12 1998/07/27 01:07:00 alex Exp $ +# $Id: Makefile,v 1.13 1998/10/16 04:30:48 peter Exp $ .PATH: ${.CURDIR}/../../miscfs/procfs KMOD= procfs -SRCS= opt_vmpage.h procfs_ctl.c procfs_map.c procfs_note.c procfs_status.c \ - procfs_subr.c procfs_type.c procfs_vfsops.c procfs_vnops.c +SRCS= opt_vmpage.h procfs_ctl.c procfs_map.c procfs_note.c procfs_rlimit.c \ + procfs_status.c procfs_subr.c procfs_type.c procfs_vfsops.c \ + procfs_vnops.c NOMAN= VFS_KLD= CFLAGS+= -DPROCFS |