[BACK]Return to kern_lwp.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_lwp.c between version 1.110.2.2 and 1.110.2.3

version 1.110.2.2, 2008/05/14 19:54:12 version 1.110.2.3, 2008/05/27 03:16:30
Line 1376  lwp_userret(struct lwp *l)
Line 1376  lwp_userret(struct lwp *l)
                         (*hook)();                          (*hook)();
                 }                  }
         }          }
   
           /*
            * Timer events are handled specially.  We only try once to deliver
            * pending timer upcalls; if if fails, we can try again on the next
            * loop around.  If we need to re-enter lwp_userret(), MD code will
            * bounce us back here through the trap path after we return.
            */
           if (p->p_timerpend)
                   timerupcall(l);
 }  }
   
 /*  /*

Legend:
Removed from v.1.110.2.2  
changed lines
  Added in v.1.110.2.3

CVSweb <webmaster@jp.NetBSD.org>