* Update any shared memory configurations based on config parameters */
| 1326 | * Update any shared memory configurations based on config parameters |
| 1327 | */ |
| 1328 | static void |
| 1329 | UpdateSharedMemoryConfig(void) |
| 1330 | { |
| 1331 | /* update global shmem state for sync rep */ |
| 1332 | SyncRepUpdateSyncStandbysDefined(); |
| 1333 | |
| 1334 | /* |
| 1335 | * If full_page_writes has been changed by SIGHUP, we update it in shared |
| 1336 | * memory and write an XLOG_FPW_CHANGE record. |
| 1337 | */ |
| 1338 | UpdateFullPageWrites(); |
| 1339 | |
| 1340 | elog(DEBUG2, "checkpointer updated shared memory configuration values"); |
| 1341 | } |
| 1342 | |
| 1343 | /* |
| 1344 | * FirstCallSinceLastCheckpoint allows a process to take an action once |
no test coverage detected