--- Makefile Sat Dec 16 10:11:05 2000 +++ Makefile.new Wed Dec 13 10:31:14 2000 @@ -27,7 +27,7 @@ kdebug.h linker_set.h md5.h\ mbuf.h mman.h mount.h msgbuf.h mtio.h namei.h netport.h param.h paths.h \ proc.h protosw.h ptrace.h queue.h reboot.h resource.h resourcevar.h \ - select.h semaphore.h shm.h signal.h signalvar.h socket.h socketvar.h sockio.h stat.h \ + select.h semaphore.h sem.h shm.h signal.h signalvar.h socket.h socketvar.h sockio.h stat.h \ syscall.h sysctl.h syslimits.h syslog.h systm.h termios.h time.h \ timeb.h times.h tprintf.h trace.h tty.h ttychars.h ttycom.h \ ttydefaults.h ttydev.h types.h ubc.h ucred.h uio.h un.h unistd.h unpcb.h \ --- malloc.h.ORIG Mon Aug 7 05:40:36 2000 +++ malloc.h Mon Jan 29 15:48:10 2001 @@ -156,7 +156,8 @@ #define M_IPFW 83 /* IP Forwarding/NAT */ #define M_UDFNODE 84 /* UDF inodes */ #define M_UDFMNT 85 /* UDF mount structures */ -#define M_LAST 86 /* Must be last type + 1 */ +#define M_SYSVSEM 86 /* SYSV semaphore */ +#define M_LAST 87 /* Must be last type + 1 */ /* Strings corresponding to types of memory */ /* Must be in synch with the #defines above */ @@ -247,6 +248,7 @@ "IpFw/IpAcct", /* 83 M_IPFW */ \ "UDF node", /* 84 M_UDFNODE */ \ "UDF mount" /* 85 M_UDFMNT */ \ + "SysV sems" /* 86 M_SYSVSEM */ \ } struct kmemstats {