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 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,8cf064ac3d238981 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2001-07-06 10:19:05 PST Path: archiver1.google.com!newsfeed.google.com!sn-xit-02!supernews.com!news.tele.dk!204.94.211.44!enews.sgi.com!newshub2.rdc1.sfba.home.com!news.home.com!news1.rdc1.sfba.home.com.POSTED!not-for-mail From: tmoran@acm.org Newsgroups: comp.lang.ada Subject: Re: Visualizing the output of concurrent threads References: <7sae2imauy.fsf@salmon.ls.fi.upm.es> X-Newsreader: Tom's custom newsreader Message-ID: Date: Fri, 06 Jul 2001 17:19:03 GMT NNTP-Posting-Host: 24.7.82.199 X-Complaints-To: abuse@home.net X-Trace: news1.rdc1.sfba.home.com 994439943 24.7.82.199 (Fri, 06 Jul 2001 10:19:03 PDT) NNTP-Posting-Date: Fri, 06 Jul 2001 10:19:03 PDT Organization: Excite@Home - The Leader in Broadband http://home.com/faster Xref: archiver1.google.com comp.lang.ada:9566 Date: 2001-07-06T17:19:03+00:00 List-Id: >suppose this is not too difficult to do, but, has anyone done it >already? It doesn't need to be anything fancy, just plain I/O in >separate windows or in separate regions of one window, one >window/region per task. The only thing is that I'd need it both for >Linux and for Windows (possibly using different graphic libraries in >each case). One of the *very* first Claw demo programs did that :) Nowadays I just use a package called TTY_Out: package TTY_Out is type TTY_Type is new Claw.Basic_Window.Basic_Window_Type with private; procedure Put(TTY : in out TTY_Type; Text : in String); ... Presumably something similar can be done with one of the multi-OS systems.