Hello,
The debugger will not recognize breakpoint in my initiated thread "TcpServerTask", (prio=49).
I have tested the original TCP/IP-demo with breakpoints working within "TCPServerTask". Then I copied the code in my application, but within the thread "TcpServerTask", the debugger does not stop at any breakpoint. Within the "main"-Task the breakpoints works fine.
I Use Rel2.2RC3.
any idea?
Thank you for your help!
Reinhard
breakpoint does not work in threads
Re: breakpoint does not work in threads
For some reason your thread is probably not running.
either a priority, or a conflict with an earlier created task.
49 is == MAIN_PRIO-1 did you start any other tasks at MAIN_PRIO-1?
either a priority, or a conflict with an earlier created task.
49 is == MAIN_PRIO-1 did you start any other tasks at MAIN_PRIO-1?
-
- Posts: 7
- Joined: Wed Mar 04, 2009 3:26 am
Re: breakpoint does not work in threads
There is also an UDP-Task running at prio 35.
The task itself is running, because I can receive Data, but the breakpoints do not work.
Reinhard
The task itself is running, because I can receive Data, but the breakpoints do not work.
Reinhard
Re: breakpoint does not work in threads
I don't have a solution for you, but my app has multiple tasks and the debugger was able to set a breakpoint at any of them.