Files
openGauss-server/src/include/utils/guc_storage.h
2021-09-23 15:19:37 +08:00

21 lines
682 B
C

/* --------------------------------------------------------------------
* guc_storage.h
*
* External declarations pertaining to backend/utils/misc/guc-file.l
* and backend/utils/misc/guc/guc_storage.cpp
*
* Copyright (c) 2000-2012, PostgreSQL Global Development Group
* Written by Peter Eisentraut <peter_e@gmx.net>.
*
* src/include/utils/guc_storage.h
* --------------------------------------------------------------------
*/
#ifndef GUC_STORAGE_H
#define GUC_STORAGE_H
extern void InitStorageConfigureNames();
extern bool check_enable_gtm_free(bool* newval, void** extra, GucSource source);
extern void InitializeNumLwLockPartitions(void);
#endif /* GUC_STORAGE_H */