* RelationMapInvalidateAll * * Reload all map files. This is used to recover from SI message buffer * overflow: we can't be sure if we missed an inval message. * Again, reload only currently-valid maps. */
| 429 | * Again, reload only currently-valid maps. |
| 430 | */ |
| 431 | void |
| 432 | RelationMapInvalidateAll(void) |
| 433 | { |
| 434 | if (shared_map.magic == RELMAPPER_FILEMAGIC) |
| 435 | load_relmap_file(true, false); |
| 436 | if (local_map.magic == RELMAPPER_FILEMAGIC) |
| 437 | load_relmap_file(false, false); |
| 438 | } |
| 439 | |
| 440 | /* |
| 441 | * AtCCI_RelationMap |
no test coverage detected