diff options
author | Robert Haas <rhaas@postgresql.org> | 2013-10-28 12:12:06 -0400 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2013-10-28 12:12:06 -0400 |
commit | d2aecaea15556f9986759f3455609bcafb0a3992 (patch) | |
tree | b9c3a567a9d93b8922d85d75a0b06e909bc31d43 /src/include/storage/dsm_impl.h | |
parent | c737a2e5641a324d3987750b73928c481a5254a0 (diff) |
Modify dynamic shared memory code to use Size rather than uint64.
This is more consistent with what we do elsewhere.
Diffstat (limited to 'src/include/storage/dsm_impl.h')
-rw-r--r-- | src/include/storage/dsm_impl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/storage/dsm_impl.h b/src/include/storage/dsm_impl.h index 13f1f48b237..52d85624972 100644 --- a/src/include/storage/dsm_impl.h +++ b/src/include/storage/dsm_impl.h @@ -65,8 +65,8 @@ typedef enum } dsm_op; /* Create, attach to, detach from, resize, or destroy a segment. */ -extern bool dsm_impl_op(dsm_op op, dsm_handle handle, uint64 request_size, - void **impl_private, void **mapped_address, uint64 *mapped_size, +extern bool dsm_impl_op(dsm_op op, dsm_handle handle, Size request_size, + void **impl_private, void **mapped_address, Size *mapped_size, int elevel); /* Some implementations cannot resize segments. Can this one? */ |