ccrtp-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Ccrtp-devel] terminate called without an active exception


From: zze-ACIHD CLAQUIN M ext RD-CORE-LAN
Subject: [Ccrtp-devel] terminate called without an active exception
Date: Mon, 5 Sep 2005 17:30:50 +0200

Hello,

I am sorry, but I have an other problem (perhaps is the same....)

I have done a very short program. After few minutes I have this message:

"terminate called without an active exception
Aborted"

And my program stop

Does anyone have any ideas?


Regards

Marc

PS: My program is :

  RTPSession *tab[70];
  InetHostAddress ip;
  ip =  "127.0.0.1";
  tpport_t firstPort = 10000;
  uint32 ssrc;
 
  for (unsigned long i=0;i<1000000;i++){
    for(unsigned long j=0;j<70;j++){
      tab[j] = new RTPSession(ip,firstPort+j*4);
      ssrc = tab[j]->getLocalSSRC();
      tab[j]->setSchedulingTimeout(10000);
      tab[j]->setExpireTimeout(3000000);
      tab[j]->setPayloadFormat(StaticPayloadFormat(sptPCMU));
      tab[j]->startRunning();     
   }
    for(unsigned long j=0;j<70;j++){
      delete (tab[j]);
    }
    if ((i%100)==0)
      cout<<i<<" done "<<endl;
  }
  cout<<"all is good"<<endl;


reply via email to

[Prev in Thread] Current Thread [Next in Thread]