This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug ada/29623] Assert_Failure sinfo.adb:649 in task allocator



------- Comment #1 from pinskia at gcc dot gnu dot org  2006-10-29 21:03 -------
Confirmed, reduced testcase:procedure rv is
    task serveur is
        entry rendez_vous;
        entry photo;
    end serveur ;
    task body serveur is
    begin
       accept photo do
          null;
       end photo;
    end serveur ;
    task type processus (numero : integer);
    task body processus is
    begin
        serveur.rendez_vous;
    end processus;
begin
    declare 
        taches : access processus;
    begin
            taches := new processus(0);
    end;
end rv;


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|0                           |1
   Last reconfirmed|0000-00-00 00:00:00         |2006-10-29 21:03:29
               date|                            |


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=29623


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]