aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/utils/os_utils.h
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2019-04-22 10:23:56 -0400
committerJack Lloyd <[email protected]>2019-04-22 10:23:56 -0400
commitf32c892f2014d65580a7225f8d18604e850a7e5a (patch)
tree01670b76653856eac3abf12a3c84578a32bfb759 /src/lib/utils/os_utils.h
parent3be52df83b8fbada9928a4faa380a738ac2115c8 (diff)
Fix some Doxygen errors
Diffstat (limited to 'src/lib/utils/os_utils.h')
-rw-r--r--src/lib/utils/os_utils.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/utils/os_utils.h b/src/lib/utils/os_utils.h
index 81d66f170..e10b529db 100644
--- a/src/lib/utils/os_utils.h
+++ b/src/lib/utils/os_utils.h
@@ -104,11 +104,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 @count pages of RAM which are locked into memory using mlock,
+* Request @param 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 @count pages.
+* than @param count pages.
*
* The contents of the allocated pages are undefined.
*