| 137 | {_CleanUp_Queue_Set( this->head, t );} |
| 138 | |
| 139 | int Call() |
| 140 | /* If q is non-empty, q.Call() removes the first object and |
| 141 | calls its clean-up function; does nothing if q is |
| 142 | empty. Returns true if there are more objects in the |
| 143 | queue. */ |
| 144 | {return _CleanUp_Queue_Call( this->head );} |
| 145 | |
| 146 | private: |
| 147 | void* head; |
nothing calls this directly
no outgoing calls
no test coverage detected