Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fixed a bug with earliest time pointers not being set correctly. | brunsch | 1998-02-15 | 1 | -1/+1 |
| | |||||
* | Fixed a problem with Timer Wheel's expire(). The problem occured when the | brunsch | 1998-01-18 | 1 | -1/+2 |
| | | | | | | | | handle_timeout() method of the event handler used would return a 0. This causes the Timer Queue to cancel all timers using that event handler. Because Timer Wheel's expire caches the position of some timers that will be expired, it was trying to expire timers that were already cancelled. Now it checks the timer before it expires. | ||||
* | Added pure virtual get_first() method to Timer_Queue_T. Added | brunsch | 1998-01-18 | 1 | -0/+11 |
| | | | | | implementations to Timer_Wheel and Timer_Hash. Timer_Heap and Timer_List already had implementations. | ||||
* | Changed the name "lock_" to "mutex_". | nw1 | 1997-11-04 | 1 | -45/+45 |
| | |||||
* | replaced NULL with 0 because some compilers, such as GHS, define NULL as ↵ | levine | 1997-10-21 | 1 | -79/+79 |
| | | | | (void *) 0 so it sometimes needs to be cast to be used | ||||
* | ChangeLogTag:Fri Oct 17 22:51:46 1997 Carlos O'Ryan ↵ | coryan | 1997-10-18 | 1 | -4/+4 |
| | | | | <coryan@macarena.cs.wustl.edu> | ||||
* | *** empty log message *** | schmidt | 1997-10-04 | 1 | -4/+4 |
| | |||||
* | *** empty log message *** | schmidt | 1997-10-04 | 1 | -38/+38 |
| | |||||
* | The iter() method now returns a pointer to an iterator that is in a reset | brunsch | 1997-09-08 | 1 | -0/+1 |
| | | | | state instead of an unknown one. | ||||
* | ChangeLogTag:Wed Sep 3 21:38:18 1997 Carlos O'Ryan ↵ | coryan | 1997-09-04 | 1 | -5/+9 |
| | | | | <coryan@polka.cs.wustl.edu> | ||||
* | Changed the behavior of the iterator to automatically initialize when the | brunsch | 1997-08-28 | 1 | -0/+1 |
| | | | | iterator is constructed. | ||||
* | Replaced references to ACE_High_Res_Timer::gettimeofday with | Steve Huston | 1997-08-12 | 1 | -2/+2 |
| | | | | | ACE_OS::gettimeofday. The High Res version is deprecated, and doesn't work right on HP-UX. | ||||
* | Put the id string at the beginning of the files | brunsch | 1997-07-24 | 1 | -0/+2 |
| | |||||
* | Added expire() to get rid of Sun CC 4.2 warnings. | brunsch | 1997-06-26 | 1 | -0/+8 |
| | |||||
* | Changed cancel (type..) to call cancellation() even if there are no timers | brunsch | 1997-06-24 | 1 | -5/+4 |
| | | | | | to cancel. This causes the correct behavior of calling handle_close () during expire when handle_timeout() returns -1. | ||||
* | Fix for Timer Wheel | brunsch | 1997-06-19 | 1 | -3/+4 |
| | |||||
* | Fixed Bug in Expire | brunsch | 1997-06-16 | 1 | -3/+3 |
| | |||||
* | moved declaration of "i" out of loop because it is used in two loops | levine | 1997-06-07 | 1 | -1/+2 |
| | |||||
* | added #includes of ace/High_Res_Timer.h | levine | 1997-06-07 | 1 | -0/+1 |
| | |||||
* | *** empty log message *** | brunsch | 1997-06-04 | 1 | -173/+366 |
| | |||||
* | *** empty log message *** | schmidt | 1997-05-17 | 1 | -3/+3 |
| | |||||
* | *** empty log message *** | irfan | 1997-05-06 | 1 | -174/+170 |
| | |||||
* | *** empty log message *** | schmidt | 1997-05-03 | 1 | -16/+16 |
| | |||||
* | *** empty log message *** | schmidt | 1997-04-28 | 1 | -17/+17 |
| | |||||
* | *** empty log message *** | schmidt | 1997-04-27 | 1 | -2/+2 |
| | |||||
* | reordered initializers to match declaration order | levine | 1997-04-27 | 1 | -2/+2 |
| | |||||
* | added newline at end of file | levine | 1997-04-27 | 1 | -1/+1 |
| | |||||
* | Added this file. Provides the implementation for the timing wheel | brunsch | 1997-04-27 | 1 | -0/+395 |
implementation of ACE_Timer_Queue_T. |