Re: Segmentation fault only on Iinux

2006-06-21 Thread Kiran
Unfortunately (i guess), I am not doing any XML. However, I am taking the previous suggestion of putting print lines in every other line of my code and then seeing where it crashes. Hopefully, that will solve the problem. thanks for the suggestions everybody -- Kiran Frank Millman wrote: > Kira

Re: Segmentation fault only on Iinux

2006-06-20 Thread Frank Millman
Kiran wrote: > Hello All, > In my program, I have a main thread which is the GUI (wxPython) and > then a thread which goes and reads data from a socket. The reason this > is in a different thread is because the data might take some time to > come back, and I want to have the GUI to be responsiv

Re: Segmentation fault only on Iinux

2006-06-20 Thread faulkner
if you don't know exactly which line of code causes the segfault, use print statements to determine that. then try to either redesign/refactor so that line isn't necessary, or protect its operation somehow. if you do know, tell us what it is and we might not need to see all your code. Kiran wrote:

Segmentation fault only on Iinux

2006-06-20 Thread Kiran
Hello All, In my program, I have a main thread which is the GUI (wxPython) and then a thread which goes and reads data from a socket. The reason this is in a different thread is because the data might take some time to come back, and I want to have the GUI to be responsive during this wait. Wh