diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2018-07-10 17:37:42 +0200 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2018-07-10 18:35:24 +0200 |
commit | bcbd940806a2011d6f99ae72ea5897e8a94c6093 (patch) | |
tree | a51aac6939900d6ba74b83bda1999304ac178c1b /src/include/storage/dsm_impl.h | |
parent | 17b715c634d451da3edb221c55c614a7d993c289 (diff) | |
download | postgresql-bcbd940806a2011d6f99ae72ea5897e8a94c6093.tar.gz postgresql-bcbd940806a2011d6f99ae72ea5897e8a94c6093.zip |
Remove dynamic_shared_memory_type=none
PostgreSQL nowadays offers some kind of dynamic shared memory feature on
all supported platforms. Having the choice of "none" prevents us from
relying on DSM in core features. So this patch removes the choice of
"none".
Author: Kyotaro Horiguchi <horiguchi.kyotaro@lab.ntt.co.jp>
Diffstat (limited to 'src/include/storage/dsm_impl.h')
-rw-r--r-- | src/include/storage/dsm_impl.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/include/storage/dsm_impl.h b/src/include/storage/dsm_impl.h index 0e5730f7c5b..e7acdff3552 100644 --- a/src/include/storage/dsm_impl.h +++ b/src/include/storage/dsm_impl.h @@ -14,7 +14,6 @@ #define DSM_IMPL_H /* Dynamic shared memory implementations. */ -#define DSM_IMPL_NONE 0 #define DSM_IMPL_POSIX 1 #define DSM_IMPL_SYSV 2 #define DSM_IMPL_WINDOWS 3 |