2003-02-25 Jeff Johnston <jjohnstn@redhat.com>

* infptrace.c (detach): Do not flag error if ptrace detach fails
        and errno is set to ESRCH.
This commit is contained in:
Jeff Johnston 2003-02-25 19:38:21 +00:00
parent a6be7fc6d6
commit 1a5848f625
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2003-02-25 Jeff Johnston <jjohnstn@redhat.com>
* infptrace.c (detach): Do not flag error if ptrace detach fails
and errno is set to ESRCH.
2003-02-24 Andrew Cagney <cagney@redhat.com>
* infptrace.c (udot_info): Change type of udot_off to long. Use

View File

@ -301,7 +301,7 @@ detach (int signal)
errno = 0;
ptrace (PT_DETACH, PIDGET (inferior_ptid), (PTRACE_ARG3_TYPE) 1,
signal);
if (errno)
if (errno && errno != ESRCH)
perror_with_name ("ptrace");
attach_flag = 0;
}