[BACK]Return to subr_pool.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / sys / kern

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/sys/kern/subr_pool.c between version 1.27 and 1.28

version 1.27, 1999/06/06 22:20:15 version 1.28, 1999/07/27 21:31:17
Line 39 
Line 39 
   
 #include "opt_pool.h"  #include "opt_pool.h"
 #include "opt_poollog.h"  #include "opt_poollog.h"
   #include "opt_lockdebug.h"
   
 #include <sys/param.h>  #include <sys/param.h>
 #include <sys/systm.h>  #include <sys/systm.h>
Line 837  _pool_put(pp, v, file, line)
Line 838  _pool_put(pp, v, file, line)
                 panic("pool_put: %s: page header missing", pp->pr_wchan);                  panic("pool_put: %s: page header missing", pp->pr_wchan);
         }          }
   
   #ifdef LOCKDEBUG
           /*
            * Check if we're freeing a locked simple lock.
            */
           simple_lock_freecheck((caddr_t)pi, ((caddr_t)pi) + pp->pr_size);
   #endif
   
         /*          /*
          * Return to item list.           * Return to item list.
          */           */

Legend:
Removed from v.1.27  
changed lines
  Added in v.1.28

CVSweb <webmaster@jp.NetBSD.org>