Skip to content

Commit 14293a6

Browse files
Adapt API style of lock_memory to match the one of the other functions (backport #209) (#229)
Adapt API style of lock_memory to match the one of the other functions (#209) Co-authored-by: Lennart Nachtigall <[email protected]> (cherry picked from commit 069df6d) Co-authored-by: Lennart Nachtigall <[email protected]>
1 parent 397209c commit 14293a6

File tree

2 files changed

+26
-5
lines changed

2 files changed

+26
-5
lines changed

include/realtime_tools/realtime_helpers.hpp

+15-1
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,24 @@ bool configure_sched_fifo(int priority);
6363
* will not swap out the pages to disk i.e., the pages are guaranteed to stay in
6464
* RAM until later unlocked - which is important for realtime applications.
6565
* \param[out] message a message describing the result of the operation
66-
* \returns true if memory locking succeeded, false otherwise
66+
* \returns true if memory locking succeeded, false otherwise.
6767
*/
68+
69+
[[deprecated("Use std::pair<bool, std::string> lock_memory() instead.")]]
6870
bool lock_memory(std::string & message);
6971

72+
/**
73+
* Locks the memory pages of the calling thread to prevent page faults.
74+
* By calling this method, the programs locks all pages mapped into the address
75+
* space of the calling process and future mappings. This means that the kernel
76+
* will not swap out the pages to disk i.e., the pages are guaranteed to stay in
77+
* RAM until later unlocked - which is important for realtime applications.
78+
* \param[out] message a message describing the result of the operation
79+
* \returns a pair of a boolean indicating whether the operation succeeded or not
80+
* and a message describing the result of the operation
81+
*/
82+
std::pair<bool, std::string> lock_memory();
83+
7084
/**
7185
* Configure the caller thread affinity - Tell the scheduler to prefer a certain
7286
* set of cores for the given thread handle.

src/realtime_helpers.cpp

+11-4
Original file line numberDiff line numberDiff line change
@@ -65,10 +65,16 @@ bool configure_sched_fifo(int priority)
6565
}
6666

6767
bool lock_memory(std::string & message)
68+
{
69+
const auto lock_result = lock_memory();
70+
message = lock_result.second;
71+
return lock_result.first;
72+
}
73+
74+
std::pair<bool, std::string> lock_memory()
6875
{
6976
#ifdef _WIN32
70-
message = "Memory locking is not supported on Windows.";
71-
return false;
77+
return {false, "Memory locking is not supported on Windows."};
7278
#else
7379
auto is_capable = [](cap_value_t v) -> bool {
7480
bool rc = false;
@@ -86,6 +92,7 @@ bool lock_memory(std::string & message)
8692
return rc;
8793
};
8894

95+
std::string message;
8996
if (mlockall(MCL_CURRENT | MCL_FUTURE) == -1) {
9097
if (!is_capable(CAP_IPC_LOCK)) {
9198
message = "No proper privileges to lock the memory!";
@@ -105,10 +112,10 @@ bool lock_memory(std::string & message)
105112
} else {
106113
message = "Unknown error occurred!";
107114
}
108-
return false;
115+
return {false, message};
109116
} else {
110117
message = "Memory locked successfully!";
111-
return true;
118+
return {true, message};
112119
}
113120
#endif
114121
}

0 commit comments

Comments
 (0)