This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Patch : gdbserver get_image_name on CE


On Tue, 2009-06-30 at 22:58 +0100, Pedro Alves wrote:
> On Tuesday 30 June 2009 22:07:19, Danny Backx wrote:
> > 
> > > Is the rest of my patch acceptable or are there things I need to
> > > address ?
> > >
> 
> Did you get to confirm what really that ERROR_PIPE_NOT_CONNECTED
> is about?
> 
>  http://sourceware.org/ml/gdb-patches/2009-06/msg00373.html

I am certain that this happens when you create an executable which
attempts to get an API from a DLL by name, if the API happens not to be
in the DLL.

You'll probably need to read that five times to understand it :-)

If the development environment is wrong in this way :
- a .def file was used to create a .dll.a file
- the .def file implements an api that's not actually in the DLL

This could be due to 
- an invalid .def file
- a .def file that's valid for one distribution of WinCE but not for
  another (read: differences between CE versions)

Anyway. What happens is the executable appears to start (CreateProcess
returns valid results), then the loader kicks in and fails. This is
where I have verified that you will get this result. 

Furthermore : none of the debug API's work either, gdbserver really gets
not a single sensible signal from the underlying process.

> Could you post an updated, cleaned up patch, without any extra
> unnecessary bits removed, along with change log entry, using
> 'cvs diff -up'?

Will do.

> And you never did explain what was broken with get_image_name
> that you had to fix, as I asked $n emails ago, right?

Err. I am almost certain that the return value of GetProcessMemory isn't
a reliable way to verify success. Its final parameter is. Or at least
that is my experience. Of course, MSDN docs don't mention this.

I tested this on ARM and on i386. Real devices, not emulators. The ARM
implementation worked as it was, and continued to work after my fix. The
i386 version didn't work before, does work after the fix.

Is this sufficient explanation?

	Danny

-- 
Danny Backx ; danny.backx - at - scarlet.be ; http://danny.backx.info


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]