| 7251 | } |
| 7252 | |
| 7253 | static void |
| 7254 | ShmemBackendArrayAdd(Backend *bn) |
| 7255 | { |
| 7256 | /* The array slot corresponding to my PMChildSlot should be free */ |
| 7257 | int i = bn->child_slot - 1; |
| 7258 | |
| 7259 | Assert(ShmemBackendArray[i].pid == 0); |
| 7260 | ShmemBackendArray[i] = *bn; |
| 7261 | } |
| 7262 | |
| 7263 | static void |
| 7264 | ShmemBackendArrayRemove(Backend *bn) |
no outgoing calls
no test coverage detected