| 3190 | } |
| 3191 | |
| 3192 | forceinline void |
| 3193 | ActorLink::head(ActorLink* a) { |
| 3194 | // Inserts al at head of link-chain (that is, after this) |
| 3195 | ActorLink* n = _next; |
| 3196 | this->_next = a; a->_prev = this; |
| 3197 | a->_next = n; n->_prev = a; |
| 3198 | } |
| 3199 | |
| 3200 | forceinline void |
| 3201 | ActorLink::tail(ActorLink* a) { |