From: Robert Haas Date: Mon, 14 Oct 2013 12:00:26 +0000 (-0400) Subject: Fix details missed by dynamic shared memory patch. X-Git-Tag: REL9_4_BETA1~1053 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=05a0283e7a48ffdca96cb6dd94fa5bae06e29bd1;p=postgresql Fix details missed by dynamic shared memory patch. Additional documentation update, and a comment fix. Both issues reported by Amit Kapila. --- diff --git a/doc/src/sgml/storage.sgml b/doc/src/sgml/storage.sgml index e0a93c1b5e..6cc0e9cbcd 100644 --- a/doc/src/sgml/storage.sgml +++ b/doc/src/sgml/storage.sgml @@ -72,6 +72,12 @@ Item Subdirectory containing transaction commit status data + + pg_dynshmem + Subdirectory containing files used by the dynamic shared memory + subsystem + + pg_multixact Subdirectory containing multitransaction status data diff --git a/src/backend/utils/resowner/resowner.c b/src/backend/utils/resowner/resowner.c index ba17701579..34a42cdce9 100644 --- a/src/backend/utils/resowner/resowner.c +++ b/src/backend/utils/resowner/resowner.c @@ -1301,7 +1301,7 @@ ResourceOwnerRememberDSM(ResourceOwner owner, dsm_segment *seg) } /* - * Forget that a temporary file is owned by a ResourceOwner + * Forget that a dynamic shmem segment is owned by a ResourceOwner */ void ResourceOwnerForgetDSM(ResourceOwner owner, dsm_segment *seg)