XtAppNextEvent problem!

This forum is read only. No new submissions are accepted.

Questions about motif? Contact us

3 posts / 0 new
Last post
XtAppNextEvent problem!

Submitted by kelvin on Fri, 11/02/2001 - 20:35. Developers
My application is crashed (Segmentation Core) and when I debug it, the line that gets a problem is XtAppNextEvent (In the mainLoop). Do anyone know about this problem? (My application have a lot of graphic, table). Thanks

ICS_support

It`s unlikely that the problem is really in that function. Rather, I suspect that you have bad memory accesses (writes) which are corrupting internal Xt data.

To debug this, you can certainly link with a version of Xt compiled with -d, so that you have complete debugging information. In addition, you can try the technique at http//www.motifzone.net/tnt/#object_destroy to see if it picks up any obvious problems. Thereafter, a tool such as Purify helps greatly.

Anonymous

Are you by any chance using XmTextField widgets to display dynamic data? We had a similar problem and traced it back our use of XmTextField in place of XmLabel, which we had done to eliminate update flicker when we changed the label string. Changing back to XmLabel solved the aborts, but now we have to live with the update flicker ( shrug ).