[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.62 and 1.64

version 1.62, 2001/10/07 12:44:06 version 1.64, 2001/11/12 15:25:20
Line 37 
Line 37 
  * POSSIBILITY OF SUCH DAMAGE.   * POSSIBILITY OF SUCH DAMAGE.
  */   */
   
   #include <sys/cdefs.h>
   __KERNEL_RCSID(0, "$NetBSD$");
   
 #include "opt_pool.h"  #include "opt_pool.h"
 #include "opt_poollog.h"  #include "opt_poollog.h"
 #include "opt_lockdebug.h"  #include "opt_lockdebug.h"
Line 1414  pool_drain(void *arg)
Line 1417  pool_drain(void *arg)
                 drainpp = TAILQ_NEXT(pp, pr_poollist);                  drainpp = TAILQ_NEXT(pp, pr_poollist);
         }          }
         simple_unlock(&pool_head_slock);          simple_unlock(&pool_head_slock);
         splx(s);  
   
         pool_reclaim(pp);          pool_reclaim(pp);
           splx(s);
 }  }
   
   

Legend:
Removed from v.1.62  
changed lines
  Added in v.1.64

CVSweb <webmaster@jp.NetBSD.org>