mirror of
https://github.com/postgres/postgres.git
synced 2025-08-31 17:02:12 +03:00
Extend dsm API with a new function dsm_unpin_mapping.
This reassociates a dynamic shared memory handle previous passed to dsm_pin_mapping with the current resource owner, so that it will be cleaned up at the end of the current query. Patch by me. Review of the function name by Andres Freund, Amit Kapila, Jim Nasby, Petr Jelinek, and Álvaro Herrera.
This commit is contained in:
@@ -37,6 +37,7 @@ extern void dsm_detach(dsm_segment *seg);
|
||||
|
||||
/* Resource management functions. */
|
||||
extern void dsm_pin_mapping(dsm_segment *seg);
|
||||
extern void dsm_unpin_mapping(dsm_segment *seg);
|
||||
extern void dsm_pin_segment(dsm_segment *seg);
|
||||
extern dsm_segment *dsm_find_mapping(dsm_handle h);
|
||||
|
||||
|
Reference in New Issue
Block a user