Changeset 2260
- Timestamp:
- 09/14/05 18:06:41 (5 years ago)
- Location:
- trunk/core
- Files:
-
- 6 modified
-
include/conditional.h (modified) (2 diffs, 1 prop)
-
include/exceptions.h (modified) (2 diffs, 1 prop)
-
include/socketset.h (modified) (2 diffs, 1 prop)
-
include/utility.h (modified) (2 diffs, 1 prop)
-
src/exceptions.cpp (modified) (1 diff, 1 prop)
-
src/socketset.cpp (modified) (2 diffs, 1 prop)
Legend:
- Unmodified
- Added
- Removed
-
trunk/core/include/conditional.h
- Property cvs2svn:cvs-rev changed from 1.4 to 1.5
r2198 r2260 30 30 #endif 31 31 32 extern "C" { 32 33 #ifndef HAVE_CLOCK_GETTIME 33 extern "C" {34 34 #include <iwear/clock_gettime.h> 35 #endif 36 #include <unistd.h> 37 #include <errno.h> 35 38 } 36 #endif37 39 38 40 #include <cmath> … … 122 124 /** 123 125 * $Log$ 126 * Revision 1.5 2005/09/14 16:06:41 plasmahh 127 * no boost errors 128 * 124 129 * Revision 1.4 2005/08/10 21:57:23 plasmahh 125 130 * changed all include guards to include directory to not clash with other libraries... work to do :) -
trunk/core/include/exceptions.h
- Property cvs2svn:cvs-rev changed from 1.46 to 1.47
r2250 r2260 517 517 : chained_error(wht,ce), chan(ch),err(er) { } 518 518 virtual ~protocol_error() throw () { } 519 520 virtual void output_additional( ostream& o ) const 521 { 522 o << ANSI_BLUE << "Occured on Channel: " << ANSI_GREEN << chan << endl; 523 o << ANSI_BLUE << "Error Code: " << ANSI_CYAN << err << endl; 524 } 525 }; 526 527 class remote_error: public iwruntime_error 528 { 529 public: 530 explicit remote_error( const string& wht ) : iwruntime_error(wht) { } 531 virtual ~remote_error() throw() { } 519 532 }; 520 533 … … 631 644 /** 632 645 * $Log$ 646 * Revision 1.47 2005/09/14 16:06:41 plasmahh 647 * no boost errors 648 * 633 649 * Revision 1.46 2005/09/13 16:17:01 plasmahh 634 650 * added mutex timeouts -
trunk/core/include/socketset.h
- Property cvs2svn:cvs-rev changed from 1.4 to 1.5
r2198 r2260 59 59 void remove( const SocketConnection& ); 60 60 61 map<int,SocketConnection*>::size_type size( void ) { return fdmap.size(); } 62 61 63 /** 62 64 * This returns a vector consisting of all the SocketConnections that are … … 73 75 /** 74 76 * $Log$ 77 * Revision 1.5 2005/09/14 16:06:41 plasmahh 78 * no boost errors 79 * 75 80 * Revision 1.4 2005/08/10 21:57:23 plasmahh 76 81 * changed all include guards to include directory to not clash with other libraries... work to do :) -
trunk/core/include/utility.h
- Property cvs2svn:cvs-rev changed from 1.55 to 1.56
r2231 r2260 186 186 : 8) : 7) : 6) : 5) : 4) : 3) : 2) : 1) : 0) 187 187 188 #define P 1 /** This has passed Phase 1 check */189 #define P 2 /** This has passed Phase 2 check */190 #define P 3 /** This has passed Phase 3 check */191 #define P 4 /** This has passed Phase 4 check */192 #define P 5 /** This has passed Phase 5 check */193 #define P 6 /** This has passed Phase 6 check */188 #define PH1 /** This has passed Phase 1 check */ 189 #define PH2 /** This has passed Phase 2 check */ 190 #define PH3 /** This has passed Phase 3 check */ 191 #define PH4 /** This has passed Phase 4 check */ 192 #define PH5 /** This has passed Phase 5 check */ 193 #define PH6 /** This has passed Phase 6 check */ 194 194 195 195 #define P1CLEAR BuildPhase::check(1); … … 520 520 /** 521 521 * $Log$ 522 * Revision 1.56 2005/09/14 16:06:41 plasmahh 523 * no boost errors 524 * 522 525 * Revision 1.55 2005/09/08 19:55:13 plasmahh 523 526 * buildphase debug stuff adde -
trunk/core/src/exceptions.cpp
- Property cvs2svn:cvs-rev changed from 1.3 to 1.4
r2250 r2260 77 77 backt = bs.str(); 78 78 79 backt += iwexception::backtrace();79 // backt += iwexception::backtrace(); 80 80 } 81 81 -
trunk/core/src/socketset.cpp
- Property cvs2svn:cvs-rev changed from 1.5 to 1.6
r2250 r2260 126 126 } 127 127 case 0: 128 d_dbg << "ret contains " << ret.size() << " entries " << endl;128 // d_dbg << "ret contains " << ret.size() << " entries " << endl; 129 129 return ret; 130 130 } … … 135 135 /** 136 136 * $Log$ 137 * Revision 1.6 2005/09/14 16:06:41 plasmahh 138 * no boost errors 139 * 137 140 * Revision 1.5 2005/09/13 16:17:01 plasmahh 138 141 * added mutex timeouts
