* RelationMapInitialize * * This initializes the mapper module at process startup. We can't access the * database yet, so just make sure the maps are empty. */
| 588 | * database yet, so just make sure the maps are empty. |
| 589 | */ |
| 590 | void |
| 591 | RelationMapInitialize(void) |
| 592 | { |
| 593 | /* The static variables should initialize to zeroes, but let's be sure */ |
| 594 | shared_map.magic = 0; /* mark it not loaded */ |
| 595 | local_map.magic = 0; |
| 596 | shared_map.num_mappings = 0; |
| 597 | local_map.num_mappings = 0; |
| 598 | active_shared_updates.num_mappings = 0; |
| 599 | active_local_updates.num_mappings = 0; |
| 600 | pending_shared_updates.num_mappings = 0; |
| 601 | pending_local_updates.num_mappings = 0; |
| 602 | } |
| 603 | |
| 604 | /* |
| 605 | * RelationMapInitializePhase2 |
no outgoing calls
no test coverage detected