mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-07-15 05:01:13 +08:00
2001-04-13 Fernando Nasser <fnasser@redhat.com>
From Adam Mirowski <Adam.Mirowski@Sun.COM> Fixed Insight on Solaris. It was not possible to debug a process because of EINTR "errors". * procfs.c: (procfs_wait): if proc_wait_for_stop() fails with EINTR, retry the call.
This commit is contained in:
@ -1,3 +1,11 @@
|
|||||||
|
2001-04-13 Fernando Nasser <fnasser@redhat.com>
|
||||||
|
|
||||||
|
From Adam Mirowski <Adam.Mirowski@Sun.COM>
|
||||||
|
Fixed Insight on Solaris. It was not possible to debug a process
|
||||||
|
because of EINTR "errors".
|
||||||
|
* procfs.c: (procfs_wait): if proc_wait_for_stop() fails
|
||||||
|
with EINTR, retry the call.
|
||||||
|
|
||||||
2001-04-12 Kevin Buettner <kevinb@redhat.com>
|
2001-04-12 Kevin Buettner <kevinb@redhat.com>
|
||||||
|
|
||||||
* solib-aix5.c (enum maptype): Delete.
|
* solib-aix5.c (enum maptype): Delete.
|
||||||
|
@ -3959,6 +3959,8 @@ wait_again:
|
|||||||
/* FIXME: might I not just use waitpid?
|
/* FIXME: might I not just use waitpid?
|
||||||
Or try find_procinfo to see if I know about this child? */
|
Or try find_procinfo to see if I know about this child? */
|
||||||
}
|
}
|
||||||
|
else if (errno == EINTR)
|
||||||
|
goto wait_again;
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
/* Unknown error from wait_for_stop. */
|
/* Unknown error from wait_for_stop. */
|
||||||
|
Reference in New Issue
Block a user