[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[List Home]
|
[pde-ui-dev] Debug View refresh problem with stack frames
|
- From: Gabriel Petrovay <gabipetrovay@xxxxxxxxx>
- Date: Thu, 22 May 2008 17:02:36 +0200
- Delivered-to: pde-ui-dev@eclipse.org
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:user-agent:mime-version:to:subject:content-type:content-transfer-encoding; bh=U78zyVvqdsxdr0jXCfUS5EfifuM/b0O26lc5AXuD9To=; b=jy7+KqeBexdlyi73gGmRED0w/HQrnXwMmCr1o8aRKwjPp1DqE4PxTRTgLBkxAHWuqC7FGhPTSMH4fgaA2fkTPzqSHbKs3EUWRXEIcl3Pp32xYwhU5kUzyiDyBG4ck4mNaezJcQBXsRcZFS+jNKrp/9ciH7219/XJkVaOHThUD4I=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:subject:content-type:content-transfer-encoding; b=lJ/XvlDofWd4BP3yoiUef8DtfVWzbCu9BR2jJHUqUN5jZAov2rM/oeddwaRnNjX1H/aKpHdtHAFKWRInPNdxtZbPmfAYfy7s3x5t228iQotT5NaYpz+w/2Rezl/kqDOzWzQkjpU0pk2EmxDnwMBhsMQ8Zsh98W+hMa9DLO2SRPU=
- User-agent: Thunderbird 2.0.0.14 (Windows/20080421)
Hi guys,
I am building a debugger for a plugin and I have a problem with the
Debug View when I break a process and I display the stack frames. Once I
retrieve the stack frames of a thread the Debug View enters in an
infinite loop and continuously selects one frame at a time.
For example, if the Debug View displays the following tree:
Target
Thread
Frame1
Frame2
Frame3
Frame4
the there is a Job("children update") that is created in an infinite
loop and each execution of this job alternatively selects one of the
last two frames: Frame4, Frame3, Frame4, Frame3, ......
What am I doing wrong? For now I am just sending a dumb list of 4 frames
which is cached so the frames are the same after the first call.
Thanks!