Changeset 19335

Show
Ignore:
Timestamp:
10/01/06 11:30:51 (2 years ago)
Author:
patrick
Message:

Added a catch clause for exceptions that might be thrown when spawning
threads. This is to keep up with changes to vpr::Thread introduced in
VPR 1.1.31. Bumped version to 1.1.8.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • juggler/trunk/modules/tweek/ChangeLog

    r19101 r19335  
    11DATE       AUTHOR      CHANGE 
    22---------- ----------- -------------------------------------------------------- 
     32006-09-30 patrick     Updated for VPR 1.1.31. 
     4                       NEW VERSION: 1.1.8 
    352006-08-03 dshipton    Use flagpoll for metadata 
    46                       NEW VERSION: 1.1.7 
  • juggler/trunk/modules/tweek/VERSION

    r19101 r19335  
     11.1.8-0 @10/01/2006 16:35:00 UTC@ 
    121.1.7-0 @08/03/2006 14:30:00 UTC@ 
    231.1.6-0 @07/12/2006 14:35:00 UTC@ 
  • juggler/trunk/modules/tweek/configure.ac

    r19331 r19335  
    446446# Checks for libraries. 
    447447# ----------------------------------------------------------------------------- 
    448 VPR_PATH([1.1.23], [BUILD_CXX='Y'], 
     448VPR_PATH([1.1.31], [BUILD_CXX='Y'], 
    449449         [AC_MSG_WARN([*** VPR required for Tweek C++ API ***]) 
    450450          BUILD_CXX='N']) 
  • juggler/trunk/modules/tweek/tweek/CORBA/CorbaManager.cpp

    r18824 r19335  
    171171   } 
    172172#endif 
     173   catch (vpr::Exception& ex) 
     174   { 
     175      status.setCode(vpr::ReturnStatus::Fail); 
     176      vprDEBUG(tweekDBG_CORBA, vprDBG_CRITICAL_LVL) 
     177         << "Caught vpr::Exception during initialization.\n" 
     178         << ex.what() << vprDEBUG_FLUSH; 
     179   } 
    173180   catch(...) 
    174181   { 
  • juggler/trunk/modules/tweek/tweek/Client/CorbaService.cpp

    r18824 r19335  
    157157   } 
    158158#endif 
     159   catch (vpr::Exception& ex) 
     160   { 
     161      status.setCode(vpr::ReturnStatus::Fail); 
     162      vprDEBUG(tweekDBG_CORBA, vprDBG_CRITICAL_LVL) 
     163         << "Caught vpr::Exception during initialization.\n" 
     164         << ex.what() << vprDEBUG_FLUSH; 
     165   } 
    159166   catch(...) 
    160167   {