From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,FREEMAIL_FROM autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,78cf562996b62d76,start X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2002-05-20 06:04:06 PST Path: archiver1.google.com!postnews1.google.com!not-for-mail From: joeyf40804@aol.com (Joey Frantzen) Newsgroups: comp.lang.ada Subject: GtkAda Threading Problem Date: 20 May 2002 06:04:05 -0700 Organization: http://groups.google.com/ Message-ID: NNTP-Posting-Host: 205.188.196.27 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Trace: posting.google.com 1021899846 13253 127.0.0.1 (20 May 2002 13:04:06 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: 20 May 2002 13:04:06 GMT Xref: archiver1.google.com comp.lang.ada:24412 Date: 2002-05-20T13:04:06+00:00 List-Id: I am writing a program that has 2 threads running, one thread handles clock updates to the screen(sent to a Gtk.Clist) and Lat/Long Updates(also sent the Gtk.Clist). I have several other Clist, one problem I am having is when my thread has to Gtk.Clear one of the other Clist, it is locking up. I think it has something to do with the GUI of GtkAda. I have all my Clist protected, as well as I have made a GUI Object that is protected. My feeling is that my GtkAda updating the Time/Lat/Long Clist is also trying to update the other Clist and is crashing the program. Any help out there?