Lines Matching refs:lwp
89 klwp_t *lwp = ttolwp(curthread); in shuttle_resume() local
95 if (lwp != NULL) { in shuttle_resume()
96 lwp->lwp_asleep = 1; /* /proc */ in shuttle_resume()
97 lwp->lwp_sysabort = 0; /* /proc */ in shuttle_resume()
98 lwp->lwp_ru.nvcsw++; in shuttle_resume()
164 if (lwp && (ISSIG(curthread, JUSTLOOKING) || in shuttle_resume()
183 klwp_t *lwp = ttolwp(curthread); in shuttle_swtch() local
187 lwp->lwp_asleep = 1; /* /proc */ in shuttle_swtch()
188 lwp->lwp_sysabort = 0; /* /proc */ in shuttle_swtch()
189 lwp->lwp_ru.nvcsw++; in shuttle_swtch()
219 klwp_t *lwp = ttolwp(t); in shuttle_sleep() local
224 if (lwp != NULL) { in shuttle_sleep()
225 lwp->lwp_asleep = 1; /* /proc */ in shuttle_sleep()
226 lwp->lwp_sysabort = 0; /* /proc */ in shuttle_sleep()
227 lwp->lwp_ru.nvcsw++; in shuttle_sleep()
236 if (lwp && (ISSIG(t, JUSTLOOKING) || MUSTRETURN(p, t))) in shuttle_sleep()