Changeset 12761
- Timestamp:
- Mar 12, 2014, 6:09:20 PM (11 years ago)
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
source/ariba/utility/logging/Logging.h
r12060 r12761 96 96 #define logging_stdout(x) std::cout << x << std::endl; 97 97 98 static int __loglevel__ = 2; //default is info99 //static int __loglevel__ = 1; // XXX use higher log level98 // static int __loglevel__ = 2; //default is info 99 static int __loglevel__ = 1; // XXX use higher log level 100 100 101 101 #define logging_trace(x) { logging_stdout(x); } -
source/ariba/utility/system/SystemEvent.h
r6919 r12761 64 64 // private class that accesses these variables. Therefore they are public for now. 65 65 ptime scheduledTime; //< time the event was originally given to the queue 66 ptime deadline; //< time when the event should be executed TODO Mario 66 67 uint32_t delayTime; //< time the event is scheduled at, or 0 if it is to be fired immediately 67 68 uint32_t remainingDelay; //< remaining delay time for sleeping -
tests/SystemQueue-tests.cc
r12758 r12761 62 62 sysq.cancel(); 63 63 64 // XXX weg, wenn das join klappt!! 65 usleep(100); 66 64 67 EXPECT_FALSE( sysq.isRunning() ); 65 68 } … … 89 92 void Check() 90 93 { 94 // XXX 95 cout << "### Check ### "<< endl; 96 91 97 checkmark = true; 92 98 } … … 108 114 break; 109 115 110 cout << " ///sleeping for " << SLEEP_TIME << " microseconds ..." << endl;116 cout << "### sleeping for " << SLEEP_TIME << " microseconds ..." << endl; 111 117 usleep(SLEEP_TIME); 112 118 }
Note:
See TracChangeset
for help on using the changeset viewer.