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,FREEMAIL_FROM autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,8e587ba85601bf8e X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2001-04-03 17:17:57 PST Path: supernews.google.com!sn-xit-02!supernews.com!news.tele.dk!209.50.235.254!europa.netcrusader.net!63.208.208.143!feed2.onemain.com!feed1.onemain.com!newsfeed2.earthlink.net!newsfeed.earthlink.net!news.mindspring.net!not-for-mail From: "arcele" Newsgroups: comp.lang.ada Subject: Re: use_error Date: Tue, 3 Apr 2001 19:17:57 -0400 Organization: MindSpring Enterprises Message-ID: <9adp5v$qa7$1@nntp9.atl.mindspring.net> References: <9ado2r$vo1$1@slb1.atl.mindspring.net> NNTP-Posting-Host: 3f.32.c0.cb X-Server-Date: 4 Apr 2001 00:17:03 GMT X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 5.00.2314.1300 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300 Xref: supernews.google.com comp.lang.ada:6425 Date: 2001-04-04T00:17:03+00:00 List-Id: No, i'm not doing that, what i'm actually trying to do is set up a chain with seperate overflow, my function that calls the error looks like this.... procedure addlink(inrec : in a_hote) is min_val : integer; begin dir_io.open(notes, dir_io.inout_file, "notes.dat"); min_val := inrec.next; while min_val /= 0 loop dir_io.read(notes, new_rec, dir_io.positive_count(min_val)); min_val := new_rec.next; end loop; dir_io.write(notes, new_rec, dir_io.positive_count(min_val)); end; Fraser Wilson wrote in message news:fy71yr9sewb.fsf@blancolioni.org... > "arcele" writes: > > > USE_ERROR when using the Direct_IO Package, can anyone tell me what in the > > heck this means, or where I can read up on it??? thanks....ryan =] > > Without code it's hard to say, but I expect you're doing something like > > use Direct_IO; > > which you can't because it's a generic, and has to be instantiated. > > Fraser. >