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-Thread: 103376,d6cfc4c1ab62ae75 X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!news3.google.com!news2.google.com!news.maxwell.syr.edu!newshub.sdsu.edu!ctu-peer!Spring.edu.tw!news.nctu.edu.tw!feeder.seed.net.tw!attdv1!attdv2!ip.att.net!newsfeed1.global.lmco.com!svlnews.lmms.lmco.com!not-for-mail From: "REH" Newsgroups: comp.lang.ada Subject: Re: How to get a a hello program written in ADA to run when VxWorks is started? Date: Wed, 22 Jun 2005 16:04:42 -0400 Organization: Earth Message-ID: References: <1119458002.204070.254050@z14g2000cwz.googlegroups.com> NNTP-Posting-Host: 158.187.64.144 X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2800.1437 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1441 Xref: g2news1.google.com comp.lang.ada:11574 Date: 2005-06-22T16:04:42-04:00 List-Id: "Lud" wrote in message news:1119458002.204070.254050@z14g2000cwz.googlegroups.com... > Looking for how to have a program like hello written in ADA (using the > GANT compiler supplied by ADA Core)to be loaded and run automatically > when VxWorks is booted up. The help in VxWorks sates that the module > usrAppInit.c is to be updated. > There are a couple ways: load and run it from your startup script, or you could link it into your VxWorks kernel, and start it as the last thing done in usrRoot(). You might want to post a question on comp.os.vxworks REH