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=-0.9 required=5.0 tests=BAYES_00,FREEMAIL_FROM, FREEMAIL_REPLY autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,62b30293a616e7d6 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2004-01-09 13:29:50 PST Path: archiver1.google.com!news2.google.com!news.maxwell.syr.edu!newsfeed.icl.net!newsfeed.fjserv.net!news.tdcnorge.no!uninett.no!uio.no!newsfeed1.uni2.dk!news.get2net.dk.POSTED!53ab2750!not-for-mail Newsgroups: comp.lang.ada Subject: Re: SIGRTMIN, where is it defined ? References: <73a83911.0401090951.5b97841c@posting.google.com> From: Mark Lorenzen Message-ID: User-Agent: Gnus/5.1002 (Gnus v5.10.2) Emacs/21.3 (gnu/linux) Cancel-Lock: sha1:qsVKfJIg1lH0bhVmrUYUT/Mc5DA= MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Fri, 09 Jan 2004 01:29:56 +0100 NNTP-Posting-Host: 62.84.221.216 X-Complaints-To: abuse@colt-telecom.dk X-Trace: news.get2net.dk 1073683790 62.84.221.216 (Fri, 09 Jan 2004 22:29:50 CET) NNTP-Posting-Date: Fri, 09 Jan 2004 22:29:50 CET Organization: Colt Telecom Kunde Xref: archiver1.google.com comp.lang.ada:4269 Date: 2004-01-09T01:29:56+01:00 List-Id: bdavis9659@comcast.net (bud davis) writes: > Which package can I "with" to get the value of SIGRTMIN ? > > gnat / linux / i386 > > I would prefer not to hardcode a constant when it "should" come from a > system level package. > > TIA, > bud davis SIGRTMIN is a mnemonic for the real-time signal with the smallest ordinal value of the real-time signals in a POSIX-like operating system. Note the word "POSIX-like" here: As we are talking about a POSIX-like operating system, you need a package (or rather several) that are meant to interface to a POSIX-like operating system. Fortunately these are standardised in the international standard ISO/IEC 14519. An implementation of this standard for the GNAT compiler can be found here: http://libre.act-europe.fr/GNAT . The implementation is called "Florist". - Mark Lorenzen