diff options
Diffstat (limited to 'src/lib/utils/os_utils.h')
-rw-r--r-- | src/lib/utils/os_utils.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/utils/os_utils.h b/src/lib/utils/os_utils.h index 61116bd2a..5b8c49f99 100644 --- a/src/lib/utils/os_utils.h +++ b/src/lib/utils/os_utils.h @@ -112,11 +112,11 @@ const char* read_env_variable(const std::string& var_name); size_t read_env_variable_sz(const std::string& var_name, size_t def_value = 0); /** -* Request @param count pages of RAM which are locked into memory using mlock, +* Request count pages of RAM which are locked into memory using mlock, * VirtualLock, or some similar OS specific API. Free it with free_locked_pages. * * Returns an empty list on failure. This function is allowed to return fewer -* than @param count pages. +* than count pages. * * The contents of the allocated pages are undefined. * |