You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
due to internal 32-bit computations, but this is guaranteed to work if the
140
140
wait is <= 0x7fffffff milliseconds (~24 days). If the limit is exceeded,
141
141
the wait will time out earlier than specified.
142
-
@deprecated Pass a chrono time_point, not an integer millisecond count. For example use `Kernel::Clock::now() + 5s`
143
-
rather than `Kernel::get_ms_count() + 5000`.
142
+
@deprecated Replaced with `try_alloc_until`. For example use `try_alloc_until(Kernel::Clock::now() + 5s)`
143
+
rather than `alloc_until(Kernel::get_ms_count() + 5000)`.
144
144
*/
145
-
MBED_DEPRECATED_SINCE("mbed-os-6.0.0", "Pass a chrono time_point, not an integer millisecond count. For example use `Kernel::Clock::now() + 5s` rather than `Kernel::get_ms_count() + 5000`.")
145
+
MBED_DEPRECATED_SINCE("mbed-os-6.0.0", "Replaced with `try_alloc_until`. For example use `try_alloc_until(Kernel::Clock::now() + 5s)` rather than `alloc_until(Kernel::get_ms_count() + 5000)`.")
due to internal 32-bit computations, but this is guaranteed to work if the
235
236
wait is <= 0x7fffffff milliseconds (~24 days). If the limit is exceeded,
236
237
the wait will time out earlier than specified.
237
-
@deprecated Pass a chrono time_point, not an integer millisecond count. For example use `Kernel::Clock::now() + 5s`
238
-
rather than `Kernel::get_ms_count() + 5000`.
238
+
@deprecated Replaced with `try_calloc_until`. For example use `try_calloc_until(Kernel::Clock::now() + 5s)`
239
+
rather than `calloc_until(Kernel::get_ms_count() + 5000)`.
239
240
*/
240
-
MBED_DEPRECATED_SINCE("mbed-os-6.0.0", "Pass a chrono time_point, not an integer millisecond count. For example use `Kernel::Clock::now() + 5s` rather than `Kernel::get_ms_count() + 5000`.")
241
+
MBED_DEPRECATED_SINCE("mbed-os-6.0.0", "Replaced with `try_calloc_until`. For example use `try_calloc_until(Kernel::Clock::now() + 5s)` rather than `calloc_until(Kernel::get_ms_count() + 5000)`.")
0 commit comments