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=unavailable autolearn_force=no version=3.4.4 Path: eternal-september.org!reader01.eternal-september.org!reader02.eternal-september.org!news.eternal-september.org!mx02.eternal-september.org!feeder.eternal-september.org!au2pb.net!weretis.net!feeder6.news.weretis.net!nntp.club.cc.cmu.edu!micro-heart-of-gold.mit.edu!newsswitch.lcs.mit.edu!nntp.TheWorld.com!.POSTED!not-for-mail From: Robert A Duff Newsgroups: comp.lang.ada Subject: Re: I do not understand this error... Date: Mon, 08 Feb 2016 18:33:54 -0500 Organization: The World Public Access UNIX, Brookline, MA Message-ID: References: <0528d7a8-773d-44b0-8f0a-e9aa48867443@googlegroups.com> <8778e70b-81e1-4dcc-8ecb-8bcaceb74b57@googlegroups.com> NNTP-Posting-Host: shell02.theworld.com Mime-Version: 1.0 Content-Type: text/plain X-Trace: pcls7.std.com 1454974422 16949 192.74.137.72 (8 Feb 2016 23:33:42 GMT) X-Complaints-To: abuse@TheWorld.com NNTP-Posting-Date: Mon, 8 Feb 2016 23:33:42 +0000 (UTC) User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (gnu/linux) Cancel-Lock: sha1:+75rydU1x0Haz23virMKWw1Rpy0= Xref: news.eternal-september.org comp.lang.ada:29448 Date: 2016-02-08T18:33:54-05:00 List-Id: "Jeffrey R. Carter" writes: > On 02/07/2016 08:51 PM, John Smith wrote: >> >> Stupid question. What do you mean by a library-level package? Is this just >> a regular package that has these callbacks declared and I just include it in >> my application? > > "Library-level" means not nested in anything else. It means not nested in any procedure, function, or task. In can be nested in arbitrarily many packages, and still be library level. > [Technically, nested directly in Standard, since all compilation units are > considered nested directly in Standard. Standard is usually not mentioned > explicitly, though, so this may be confusing to a beginner.] I'm not sure what you mean by "directly" there, but if you say "package A.B is...", B is inside of A, and A is inside of Standard. And all of Standard, A, and B are library level. - Bob