1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- #include "thread_dbP.h"
- td_err_e
- td_thr_setgregs (const td_thrhandle_t *th, prgregset_t gregs)
- {
- struct _pthread_descr_struct pds = { .p_terminated = 0, .p_pid = 0 };
- LOG ("td_thr_setgregs");
-
- if (th->th_unique != NULL
- && ps_pdread (th->th_ta_p->ph, th->th_unique, &pds,
- sizeof (struct _pthread_descr_struct)) != PS_OK)
- return TD_ERR;
-
- if (pds.p_terminated == 0)
- {
- pid_t pid = pds.p_pid ?: ps_getpid (th->th_ta_p->ph);
- if (ps_lsetregs (th->th_ta_p->ph, pid, gregs) != PS_OK)
- return TD_ERR;
- }
- return TD_OK;
- }
|