[BACK]Return to kern_event.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/kern_event.c between version 1.34 and 1.35

version 1.34, 2007/01/04 17:38:25 version 1.35, 2007/02/09 21:55:30
Line 52  __KERNEL_RCSID(0, "$NetBSD$");
Line 52  __KERNEL_RCSID(0, "$NetBSD$");
 #include <sys/uio.h>  #include <sys/uio.h>
 #include <sys/mount.h>  #include <sys/mount.h>
 #include <sys/filedesc.h>  #include <sys/filedesc.h>
 #include <sys/sa.h>  
 #include <sys/syscallargs.h>  #include <sys/syscallargs.h>
 #include <sys/kauth.h>  #include <sys/kauth.h>
   
Line 422  filt_procdetach(struct knote *kn)
Line 421  filt_procdetach(struct knote *kn)
                 return;                  return;
   
         p = kn->kn_ptr.p_proc;          p = kn->kn_ptr.p_proc;
         KASSERT(p->p_stat == SZOMB || pfind(kn->kn_id) == p);  
   
         /* XXXSMP lock the process? */          /* XXXSMP lock the process? */
         SLIST_REMOVE(&p->p_klist, kn, knote, kn_selnext);          SLIST_REMOVE(&p->p_klist, kn, knote, kn_selnext);

Legend:
Removed from v.1.34  
changed lines
  Added in v.1.35

CVSweb <webmaster@jp.NetBSD.org>