File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -136,11 +136,11 @@ namespace pthread {
136136 */
137137 cv_status wait_for (mutex &mtx, int millis);
138138
139- /* * NOSONAR Wait for condition to be signaled within given time frame.
139+ /* * Wait for condition to be signaled within given time frame.
140140 *
141141 * The method uses the lock_guard's mutex to execute.
142142 *
143- * @see #wait_for (mutex &, int)
143+ * @see #wait_for (mutex &, int) NOSONAR
144144 */
145145 cv_status wait_for (lock_guard<pthread::mutex> &lck, int millis);
146146
@@ -165,7 +165,7 @@ namespace pthread {
165165 template <class Lambda >
166166 bool wait_for (mutex &mtx, int millis, Lambda lambda);
167167
168- /* * NOSONAR Wait for condition to be signaled within a given time frame.
168+ /* * Wait for condition to be signaled within a given time frame.
169169 *
170170 * This method atomically release mutex and cause the calling thread to block; atomically here means "atomically with respect to
171171 * access by another thread to the mutex and then the condition variable". Call notify_one or notify_all to signal the condition.
You can’t perform that action at this time.
0 commit comments