Changeset 2554
- Timestamp:
- 09/06/07 23:38:37 (1 year ago)
- Files:
-
- trunk/tango/io/selector/EpollSelector.d (modified) (1 diff)
- trunk/tango/io/selector/PollSelector.d (modified) (1 diff)
- trunk/tango/io/selector/SelectSelector.d (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/tango/io/selector/EpollSelector.d
r2496 r2554 105 105 { 106 106 /** 107 * Alias for the select() method as we're not reimplementing it in 108 * this class. 109 */ 110 alias AbstractSelector.select select; 111 112 /** 107 113 * Default number of SelectionKey's that will be handled by the 108 114 * EpollSelector. trunk/tango/io/selector/PollSelector.d
r1634 r2554 66 66 { 67 67 /** 68 * Alias for the select() method as we're not reimplementing it in 69 * this class. 70 */ 71 alias AbstractSelector.select select; 72 73 /** 68 74 * Default number of SelectionKey's that will be handled by the 69 75 * PollSelector. trunk/tango/io/selector/SelectSelector.d
r2356 r2554 79 79 public class SelectSelector: AbstractSelector 80 80 { 81 /** 82 * Alias for the select() method as we're not reimplementing it in 83 * this class. 84 */ 85 alias AbstractSelector.select select; 86 81 87 uint _size; 82 88 private SelectionKey[ISelectable.Handle] _keys;












