--- 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 Sat Dec 16 10:09:53 2000 +++ malloc.h.new Sat Dec 16 10:07:11 2000 @@ -159,8 +159,9 @@ #define M_IP6NDP 86 /* IPv6 Neighbour Discovery*/ #define M_IP6OPT 87 /* IPv6 options management */ #define M_NATPT 88 /* KAME NAT feature */ +#define M_SYSVSEM 89 -#define M_LAST 89 /* Must be last type + 1 */ +#define M_LAST 90 /* Must be last type + 1 */ /* Strings corresponding to types of memory */ /* Must be in synch with the #defines above */ @@ -254,6 +255,7 @@ "IPv6 NDP", /* 86 M_IP6NDP */ \ "IPv6 options", /* 87 M_IP6OPT */ \ "NATPT", /* 88 M_NATPT */ \ + "SysV sems", /* 89 M_SYSVSEM */ \ } struct kmemstats {