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.8 required=5.0 tests=BAYES_00,INVALID_DATE autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,b4185948f9f2555,start X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 1994-12-26 14:47:21 PST Path: nntp.gmd.de!Germany.EU.net!howland.reston.ans.net!pipex!uunet!newsflash.concordia.ca!nstn.ns.ca!halifax-ts1-33.nstn.ca!cwarwick From: cwarwick@fox.nstn.ns.ca (Elgar the Idiot aka Chris Warwick) Newsgroups: comp.lang.ada Subject: Ada and shared memory question Date: 26 Dec 1994 18:40:29 -0400 Organization: PRIOR Data Sciences Sender: news@nstn.ns.ca Message-ID: NNTP-Posting-Host: owl.nstn.ns.ca X-Newsreader: Trumpet for Windows [Version 1.0 Rev A] Date: 1994-12-26T18:40:29-04:00 List-Id: I have had very little luck getting system specific info, but the compiler is Verdix, and the OS is SCO UNIX... Does anyone know how the Ada RTE usually implemented on non-threaded UNIX systems? Is it linked into each executable, or is some sort of shared library used? We are trying to write an Oracle SQL procedure to call services provided by our Ada programs. The problem seems to be the Ada RTE code is not being correctly linked or referenced. One solution I thought of would be to place the code into a shared memory buffer, and provide a C front end to access the memory and call the service. Is this a reasonable use of shared memory? Can I do this in Ada? Has anyone out there tried this? Any help would be greatly appreciated...