[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.36 and 1.37

version 1.36, 2000/05/31 15:29:42 version 1.37, 2000/06/10 18:44:44
Line 594  _pool_get(pp, flags, file, line)
Line 594  _pool_get(pp, flags, file, line)
         }          }
 #endif  #endif
   
         if (__predict_false(curproc == NULL && (flags & PR_WAITOK) != 0))          if (__predict_false(curproc == NULL && doing_shutdown == 0 &&
                               (flags & PR_WAITOK) != 0))
                 panic("pool_get: must have NOWAIT");                  panic("pool_get: must have NOWAIT");
   
         simple_lock(&pp->pr_slock);          simple_lock(&pp->pr_slock);

Legend:
Removed from v.1.36  
changed lines
  Added in v.1.37

CVSweb <webmaster@jp.NetBSD.org>