File tree 2 files changed +26
-5
lines changed
2 files changed +26
-5
lines changed Original file line number Diff line number Diff line change @@ -63,10 +63,24 @@ bool configure_sched_fifo(int priority);
63
63
* will not swap out the pages to disk i.e., the pages are guaranteed to stay in
64
64
* RAM until later unlocked - which is important for realtime applications.
65
65
* \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.
67
67
*/
68
+
69
+ [[deprecated(" Use std::pair<bool, std::string> lock_memory() instead." )]]
68
70
bool lock_memory (std::string & message);
69
71
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
+
70
84
/* *
71
85
* Configure the caller thread affinity - Tell the scheduler to prefer a certain
72
86
* set of cores for the given thread handle.
Original file line number Diff line number Diff line change @@ -65,10 +65,16 @@ bool configure_sched_fifo(int priority)
65
65
}
66
66
67
67
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 ()
68
75
{
69
76
#ifdef _WIN32
70
- message = " Memory locking is not supported on Windows." ;
71
- return false ;
77
+ return {false , " Memory locking is not supported on Windows." };
72
78
#else
73
79
auto is_capable = [](cap_value_t v) -> bool {
74
80
bool rc = false ;
@@ -86,6 +92,7 @@ bool lock_memory(std::string & message)
86
92
return rc;
87
93
};
88
94
95
+ std::string message;
89
96
if (mlockall (MCL_CURRENT | MCL_FUTURE) == -1 ) {
90
97
if (!is_capable (CAP_IPC_LOCK)) {
91
98
message = " No proper privileges to lock the memory!" ;
@@ -105,10 +112,10 @@ bool lock_memory(std::string & message)
105
112
} else {
106
113
message = " Unknown error occurred!" ;
107
114
}
108
- return false ;
115
+ return { false , message} ;
109
116
} else {
110
117
message = " Memory locked successfully!" ;
111
- return true ;
118
+ return { true , message} ;
112
119
}
113
120
#endif
114
121
}
You can’t perform that action at this time.
0 commit comments