Skip to content

Commit 0c6e0ef

Browse files
frankistcodebot
authored andcommitted
support: remove unused execute_on_blocking with busy waiting
1 parent 749725b commit 0c6e0ef

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

include/srsran/support/async/execute_on.h

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -88,14 +88,6 @@ auto try_defer_to(TaskExecutor& exec)
8888
return detail::try_execute_on_awaiter<TaskExecutor, false>{exec};
8989
}
9090

91-
/// \brief Returns an awaitable that resumes the suspended coroutine in a different execution context. If the call
92-
/// to execute fails, the awaitable will retry it until it succeeds.
93-
template <typename TaskExecutor>
94-
auto execute_on_blocking(TaskExecutor& exec)
95-
{
96-
return detail::blocking_execute_on_awaiter<TaskExecutor, true>(exec);
97-
}
98-
9991
/// \brief Returns an awaitable that resumes the suspended coroutine in a different execution context. If the call
10092
/// to defer fails, the awaitable will retry it until it succeeds.
10193
template <typename TaskExecutor>

0 commit comments

Comments
 (0)