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,93db2bcd4637d4fc X-Google-Attributes: gid103376,public From: "David C. Hoos, Sr." Subject: Re: Runtime Error with gnat 3.10p Date: 1998/05/26 Message-ID: <6kel87$ic7$1@polo.advicom.net>#1/1 X-Deja-AN: 356642632 Distribution: world References: X-MimeOLE: Produced By Microsoft MimeOLE V4.71.1712.3 Organization: ADViCOM -- Advanced Internet Communications Newsgroups: comp.lang.ada Date: 1998-05-26T00:00:00+00:00 List-Id: Andreas Jungmaier wrote in message ... >Hello all, > >does anyone have an idea what the following little message is >about : >Failed Runtime Assertion : GNULLI failure---Set_Priority > >Note that this showed up after executing a compiled Ada program >containing several tasks (instantiated task types) >This is on RedHat-Linux. Could this have to do with the thread >libs coming with gnat ? Yes, it does. One of the runtimes requires root privileges to do tasking while the other does not (I forget which is which). Take a look at the instructions from gnat for installation, and switch the symbolic link to point to the other runtime, and re-link your program. Otherwise, run as root, or with root as the owner of the executable file, and the setuid/and or setgid permission bits set. If you chmown the executable file to be owned by root, then chmod 6755 , the executable runs with root privileges. Be aware, however, that such programs can do all of the things the superuser can do, so in some contexts this may not be allowed to be done by an ordinary user. David C. Hoos, Sr.