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.3 required=5.0 tests=BAYES_00,INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,16a1315c0a4efed3 X-Google-Attributes: gid103376,public From: "Theodore E. Dennison" Subject: Re: Task kernal Date: 1996/06/05 Message-ID: <31B5C5BE.31DFF4F5@escmail.orl.mmc.com>#1/1 X-Deja-AN: 158634283 references: content-type: text/plain; charset=us-ascii organization: Lockheed Martin Information Systems mime-version: 1.0 newsgroups: comp.lang.ada x-mailer: Mozilla 2.0 (X11; I; SunOS 4.1.3_U1 sun4m) Date: 1996-06-05T00:00:00+00:00 List-Id: Tod Trowbridge wrote: > > I am using activada for windows made by Alsys. > Does anybody have any information about a run-time > error "global blocking situation detected by task > kernal". I'd suspect that means you have a task deadlock. This is a situation where Task_A is waiting to renedzvous with Task_B using Entry_C, and Task_B is waiting to rendezvous with Task_A using Entry_D. One way to solve such problems is to write your program using some kind of client-server model for task interactions. Another way is to have one of the tasks use timed entry calls. -- T.E.D. | Work - mailto:dennison@escmail.orl.mmc.com | | Home - mailto:dennison@iag.net | | URL - http://www.iag.net/~dennison |