|
From: Julian S. <js...@ac...> - 2008-05-29 09:08:16
|
On Thursday 29 May 2008 10:50, Julian Seward wrote:
> On Thursday 29 May 2008 10:52, sv...@va... wrote:
> > Author: bart
> > Date: 2008-05-29 09:52:44 +0100 (Thu, 29 May 2008)
> > New Revision: 8142
> >
> > Log:
> > Make sure the debug information is read before a tool is notified about
> > an mmap() system call.
>
> What happens if the mmap fails? Do the symbols then get unloaded?
Ah; I think I understand. This patch merely changes the order from
do the system call
if (syscall succeeded) {
notify the tool
load the debuginfo
}
to
do the system call
if (syscall succeeded) {
load the debuginfo
notify the tool
}
Is that correct?
J
|