|
From: Frank V. C. <fr...@us...> - 2000-10-07 12:15:34
|
Update of /cvsroot/corelinux/corelinux/src/classlibs/corelinux In directory slayer.i.sourceforge.net:/tmp/cvs-serv26879 Modified Files: SemaphoreGroup.cpp Log Message: 116320 Replace std::cout with SemaphoreException Index: SemaphoreGroup.cpp =================================================================== RCS file: /cvsroot/corelinux/corelinux/src/classlibs/corelinux/SemaphoreGroup.cpp,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -r1.13 -r1.14 *** SemaphoreGroup.cpp 2000/07/28 01:50:54 1.13 --- SemaphoreGroup.cpp 2000/10/07 12:15:31 1.14 *************** *** 41,46 **** } - #include <iostream> - namespace corelinux { --- 41,44 ---- *************** *** 461,465 **** if( val == -1 ) { ! cout << "Semaphore Group Destructor failed" << std::endl; } else --- 459,463 ---- if( val == -1 ) { ! throw SemaphoreException("Semaphore Group Destructor failed",LOCATION); } else *************** *** 495,499 **** if( val == -1 ) { ! cout << "Semaphore Group Destructor failed" << std::endl; } else --- 493,497 ---- if( val == -1 ) { ! throw SemaphoreException("Semaphore Group Destructor failed",LOCATION); } else |