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.3 required=5.0 tests=BAYES_00,INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,37680a99b5e22b2b X-Google-Attributes: gid103376,public From: bobduff@world.std.com (Robert A Duff) Subject: Re: Shared Generic Instance Code Date: 1997/04/02 Message-ID: #1/1 X-Deja-AN: 230164309 References: <5hrkhkINN9ip@snoopy.cis.ohio-state.edu> <1997Apr1.201631.28634@ocsystems.com> Organization: The World Public Access UNIX, Brookline, MA Newsgroups: comp.lang.ada Date: 1997-04-02T00:00:00+00:00 List-Id: In article , Robert Dewar wrote: >Not that it is so difficult to do ... The difficulties are different depending on whether you share code or not. GNAT does not. If you want to break in a particular instance, and its code is shared with other instances, then the debugger has to set a breakpoint, but carefully ignore it when the current instance is the wrong one. Not that big of a deal, but the debugger has to know *something* about it. Similar to issues about debugging inlined subprograms (only backwards). - Bob