Remove stale M_ZOMBIE malloc type.

This type is unused since embedding p_ru into struct proc.

MFC after:	1 week
This commit is contained in:
Sergey Kandaurov 2011-04-14 14:25:47 +00:00
parent 79bb84fb15
commit ced9253e4e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=220621
2 changed files with 0 additions and 4 deletions

View File

@ -94,9 +94,6 @@ SDT_PROVIDER_DECLARE(proc);
SDT_PROBE_DEFINE(proc, kernel, , exit, exit);
SDT_PROBE_ARGTYPE(proc, kernel, , exit, 0, "int");
/* Required to be non-static for SysVR4 emulator */
MALLOC_DEFINE(M_ZOMBIE, "zombie", "zombie proc status");
/* Hook for NFS teardown procedure. */
void (*nlminfo_release_p)(struct proc *p);

View File

@ -664,7 +664,6 @@ MALLOC_DECLARE(M_PARGS);
MALLOC_DECLARE(M_PGRP);
MALLOC_DECLARE(M_SESSION);
MALLOC_DECLARE(M_SUBPROC);
MALLOC_DECLARE(M_ZOMBIE);
#endif
#define FOREACH_PROC_IN_SYSTEM(p) \