* ShmemQueueInit -- make the head of a new queue point * to itself */
| 33 | * to itself |
| 34 | */ |
| 35 | void |
| 36 | SHMQueueInit(SHM_QUEUE *queue) |
| 37 | { |
| 38 | Assert(ShmemAddrIsValid(queue)); |
| 39 | queue->prev = queue->next = queue; |
| 40 | } |
| 41 | |
| 42 | /* |
| 43 | * SHMQueueIsDetached -- true if element is not currently |
no test coverage detected