| 3198 | } |
| 3199 | |
| 3200 | forceinline void |
| 3201 | ActorLink::tail(ActorLink* a) { |
| 3202 | // Inserts al at tail of link-chain (that is, before this) |
| 3203 | ActorLink* p = _prev; |
| 3204 | a->_next = this; this->_prev = a; |
| 3205 | p->_next = a; a->_prev = p; |
| 3206 | } |
| 3207 | |
| 3208 | forceinline bool |
| 3209 | ActorLink::empty(void) const { |