Using gdb to check for undirected flow on eCos target clients

I have a MIPS target working with eCos that uses multiple threads. For debugging, I use gdb 7.5 and a JTAG probe.

How can I check and track an inaccurate stream from GDB. I have a base stream address and a program counter from an alternate stream (I can correctly find other information if I need it).

Since gdb does not know eCos, commands such as "information flows" do not work. So I will most likely have a guide in which the context of the stream in gdb ...

+6
source share
1 answer

We use the Code Trust Tools for Eclipse, which allows you to debug message flow-dependent threads through JTAG. It is not free, but it works very well, it is still supported by new versions of Eclipse and the support that John Dallaway offers is very good. I highly recommend it if you are seriously developing eCos.

0
source

All Articles