Fix return value.

This commit is contained in:
David Xu 2006-05-17 05:14:45 +00:00
parent 2ed66c9390
commit ef39743bc3
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=158681

View File

@ -501,7 +501,8 @@ pt_thr_get_info(const td_thrhandle_t *th, td_thrinfo_t *info)
if (ret == PS_OK) {
info->ti_sigmask = linfo.pl_sigmask;
info->ti_pending = linfo.pl_siglist;
}
} else
return (ret);
if (state == ta->thread_state_running)
info->ti_state = TD_THR_RUN;
else if (state == ta->thread_state_zoombie)