From 016a96a80cce025a86c6cf26707738f6a2eb2658 Mon Sep 17 00:00:00 2001 From: vnugent Date: Thu, 29 Feb 2024 21:22:38 -0500 Subject: feat: add future support for memory diagnostics, and some docs --- .../src/ICacheEntryMemoryManager.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'lib/VNLib.Data.Caching.ObjectCache/src/ICacheEntryMemoryManager.cs') diff --git a/lib/VNLib.Data.Caching.ObjectCache/src/ICacheEntryMemoryManager.cs b/lib/VNLib.Data.Caching.ObjectCache/src/ICacheEntryMemoryManager.cs index dffbfa2..dd57931 100644 --- a/lib/VNLib.Data.Caching.ObjectCache/src/ICacheEntryMemoryManager.cs +++ b/lib/VNLib.Data.Caching.ObjectCache/src/ICacheEntryMemoryManager.cs @@ -1,5 +1,5 @@ /* -* Copyright (c) 2023 Vaughn Nugent +* Copyright (c) 2024 Vaughn Nugent * * Library: VNLib * Package: VNLib.Data.Caching.ObjectCache @@ -57,9 +57,9 @@ namespace VNLib.Data.Caching /// Pins the handle to the specified offset and returns a /// to the pinned memory block. /// - /// - /// - /// + /// A referrence to the existing handle + /// The number of bytes from the base to offset the returned pointer + /// A memory handle pointing to the first byte in the segment given by the offset MemoryHandle PinHandle(object handle, int offset); /// -- cgit