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: 114c38,b2077f5b728fb9af X-Google-Attributes: gid114c38,public X-Google-Thread: 103376,b2077f5b728fb9af X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2001-04-10 09:18:09 PST Path: supernews.google.com!sn-xit-03!supernews.com!freenix!sunqbc.risq.qc.ca!cpk-news-hub1.bbnplanet.com!news.gtei.net!newshub2.home.com!news.home.com!news1.rdc1.sfba.home.com.POSTED!not-for-mail Message-ID: <3AD3322E.7F2959EA@home.com> From: Mark Biggar X-Mailer: Mozilla 4.76 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 Newsgroups: comp.lang.ada,comp.os.vxworks Subject: Re: redirecting the standard output to different std outputs? References: <3ad31759$1@pull.gecm.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Date: Tue, 10 Apr 2001 16:17:28 GMT NNTP-Posting-Host: 65.3.211.243 X-Complaints-To: abuse@home.net X-Trace: news1.rdc1.sfba.home.com 986919448 65.3.211.243 (Tue, 10 Apr 2001 09:17:28 PDT) NNTP-Posting-Date: Tue, 10 Apr 2001 09:17:28 PDT Organization: Excite@Home - The Leader in Broadband http://home.com/faster Xref: supernews.google.com comp.lang.ada:6714 comp.os.vxworks:6378 Date: 2001-04-10T16:17:28+00:00 List-Id: Frank wrote: > Is it possible to say that one task shall have one std output and another > task a different std output? > Eg. that two task (in the same Ada-program) can have std output to different > Xterm windows in Linux. No, the Ada Io packages are not task save, or aware. You can't even reliably write form two tasks to the same file with out imposing your own explicit locking protocol, such as using a protected object or a handler task. -- mark.a.biggar@home.com